From 1f021007a140b447c67bc2d14559a1c67c6aa261 Mon Sep 17 00:00:00 2001 From: LOOHP Date: Wed, 7 Jun 2023 22:11:02 +0100 Subject: [PATCH] Minecraft 1.20 --- pom.xml | 14 +- src/main/java/com/loohp/limbo/Limbo.java | 4 +- .../loohp/limbo/network/ClientConnection.java | 10 +- .../ClientboundLevelChunkWithLightPacket.java | 9 +- .../protocol/packets/PacketPlayOutLogin.java | 5 +- .../limbo/player/PlayerInteractManager.java | 5 +- src/main/resources/blocks.json | 325027 ++++++++------- src/main/resources/dimension_registry.json | 2369 +- src/main/resources/registries.json | 15723 +- 9 files changed, 173730 insertions(+), 169436 deletions(-) diff --git a/pom.xml b/pom.xml index 7ce00ab..f282262 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 0.7.4-ALPHA + 0.7.5-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.19.4 + ${project.artifactId}-${project.version}-1.20 @@ -256,31 +256,31 @@ net.kyori adventure-text-serializer-gson - 4.13.0 + 4.14.0 compile net.kyori adventure-text-serializer-legacy - 4.13.0 + 4.14.0 compile net.kyori adventure-text-serializer-plain - 4.13.0 + 4.14.0 compile net.kyori adventure-api - 4.13.0 + 4.14.0 compile net.kyori adventure-nbt - 4.13.0 + 4.14.0 compile diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index 8e56a83..9ea30d0 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -139,8 +139,8 @@ public final class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.19.4"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 762; + public final String SERVER_IMPLEMENTATION_VERSION = "1.20"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 763; public final String LIMBO_IMPLEMENTATION_VERSION; private final AtomicBoolean isRunning; diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 97f2329..2026b11 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -572,11 +572,11 @@ public class ClientConnection extends Thread { PlayerSpawnEvent spawnEvent = Limbo.getInstance().getEventsManager().callEvent(new PlayerSpawnEvent(player, worldSpawn)); worldSpawn = spawnEvent.getSpawnLocation(); World world = worldSpawn.getWorld(); - - PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, properties.getDefaultGamemode(), Limbo.getInstance().getWorlds(), Limbo.getInstance().getDimensionRegistry().getCodec(), world, 0, (byte) properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, true); + + PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, properties.getDefaultGamemode(), Limbo.getInstance().getWorlds(), Limbo.getInstance().getDimensionRegistry().getCodec(), world, 0, (byte) properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, true, 0); sendPacket(join); Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode()); - + ByteArrayOutputStream brandOut = new ByteArrayOutputStream(); DataTypeIO.writeString(new DataOutputStream(brandOut), properties.getServerModName(), StandardCharsets.UTF_8); sendPluginMessage(BRAND_ANNOUNCE_CHANNEL, brandOut.toByteArray()); @@ -598,9 +598,9 @@ public class ClientConnection extends Thread { String str = (properties.isLogPlayerIPAddresses() ? inetAddress.getHostName() : "") + ":" + clientSocket.getPort() + "|" + player.getName() + "(" + player.getUniqueId() + ")"; Limbo.getInstance().getConsole().sendMessage("[/" + str + "] <-> Player had connected to the Limbo server!"); - + player.playerInteractManager.update(); - + PacketPlayOutDeclareCommands declare = DeclareCommands.getDeclareCommandsPacket(player); if (declare != null) { sendPacket(declare); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java index ae55051..dfa806e 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java @@ -44,7 +44,6 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { private int chunkZ; private Chunk chunk; private Environment environment; - private boolean trustEdges; private long[] skyLightBitMasks; private long[] blockLightBitMasks; private long[] skyLightBitMasksEmpty; @@ -52,12 +51,11 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { private List skylightArrays; private List blocklightArrays; - public ClientboundLevelChunkWithLightPacket(int chunkX, int chunkZ, Chunk chunk, Environment environment, boolean trustEdges, List skylightArrays, List blocklightArrays) { + public ClientboundLevelChunkWithLightPacket(int chunkX, int chunkZ, Chunk chunk, Environment environment, List skylightArrays, List blocklightArrays) { this.chunkX = chunkX; this.chunkZ = chunkZ; this.chunk = chunk; this.environment = environment; - this.trustEdges = trustEdges; this.skylightArrays = skylightArrays; this.blocklightArrays = blocklightArrays; @@ -96,10 +94,6 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { return environment; } - public boolean isTrustEdges() { - return trustEdges; - } - public long[] getSkyLightBitMasks() { return skyLightBitMasks; } @@ -258,7 +252,6 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { DataTypeIO.writeCompoundTag(output, each); } - output.writeBoolean(trustEdges); DataTypeIO.writeVarInt(output, skyLightBitMasks.length); for (long l : skyLightBitMasks) { output.writeLong(l); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java index 770d71b..595c3c3 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java @@ -49,8 +49,9 @@ public class PacketPlayOutLogin extends PacketOut { private boolean enableRespawnScreen; private boolean isDebug; private boolean isFlat; + private int portalCooldown; - public PacketPlayOutLogin(int entityId, boolean isHardcore, GameMode gamemode, List worlds, CompoundTag dimensionCodec, World world, long hashedSeed, byte maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean isDebug, boolean isFlat) { + public PacketPlayOutLogin(int entityId, boolean isHardcore, GameMode gamemode, List worlds, CompoundTag dimensionCodec, World world, long hashedSeed, byte maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean isDebug, boolean isFlat, int portalCooldown) { this.entityId = entityId; this.isHardcore = isHardcore; this.gamemode = gamemode; @@ -66,6 +67,7 @@ public class PacketPlayOutLogin extends PacketOut { this.enableRespawnScreen = enableRespawnScreen; this.isDebug = isDebug; this.isFlat = isFlat; + this.portalCooldown = portalCooldown; } public int getEntityId() { @@ -154,6 +156,7 @@ public class PacketPlayOutLogin extends PacketOut { output.writeBoolean(isDebug); output.writeBoolean(isFlat); output.writeBoolean(false); + DataTypeIO.writeVarInt(output, portalCooldown); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java index 83b1270..49bcaa1 100644 --- a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java +++ b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java @@ -33,6 +33,7 @@ import net.querz.mca.Chunk; import java.io.IOException; import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; @@ -123,7 +124,7 @@ public class PlayerInteractManager { if (!currentViewing.containsKey(chunkPos)) { Chunk chunk = chunkPos.getWorld().getChunkAt(chunkPos.getChunkX(), chunkPos.getChunkZ()); if (chunk == null) { - ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), entry.getValue(), world.getEnvironment(), true, new ArrayList<>(), new ArrayList<>()); + ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), entry.getValue(), world.getEnvironment(), Collections.emptyList(), Collections.emptyList()); player.clientConnection.sendPacket(chunkdata); } else { List blockChunk = world.getLightEngineBlock().getBlockLightBitMask(chunkPos.getChunkX(), chunkPos.getChunkZ()); @@ -137,7 +138,7 @@ public class PlayerInteractManager { if (skyChunk == null) { skyChunk = new ArrayList<>(); } - ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), chunk, world.getEnvironment(), true, skyChunk, blockChunk); + ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), chunk, world.getEnvironment(), skyChunk, blockChunk); player.clientConnection.sendPacket(chunkdata); } } diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json index 50e033c..ebb070a 100644 --- a/src/main/resources/blocks.json +++ b/src/main/resources/blocks.json @@ -18,43 +18,11 @@ ] }, "states": [ - { - "id": 8703, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8704, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8705, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8706, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 8707, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -62,7 +30,7 @@ "id": 8708, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -70,7 +38,7 @@ "id": 8709, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -78,12 +46,44 @@ "id": 8710, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8711, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8712, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8713, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8714, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8715, "properties": { "face": "wall", "facing": "north", @@ -92,42 +92,10 @@ }, { "default": true, - "id": 8712, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8713, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8714, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8715, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 8716, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -135,7 +103,7 @@ "id": 8717, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -143,39 +111,39 @@ "id": 8718, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8719, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 8720, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 8721, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 8722, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -183,7 +151,7 @@ "id": 8723, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -191,7 +159,7 @@ "id": 8724, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -199,12 +167,44 @@ "id": 8725, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 8726, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8727, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8728, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8729, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8730, "properties": { "face": "ceiling", "facing": "east", @@ -239,52 +239,12 @@ ] }, "states": [ - { - "id": 11869, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11870, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11871, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11872, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 11873, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -294,7 +254,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -304,7 +264,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -314,13 +274,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 11877, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11878, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11879, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11880, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11881, "properties": { "facing": "north", "half": "lower", @@ -330,7 +330,7 @@ } }, { - "id": 11878, + "id": 11882, "properties": { "facing": "north", "half": "lower", @@ -340,7 +340,7 @@ } }, { - "id": 11879, + "id": 11883, "properties": { "facing": "north", "half": "lower", @@ -351,51 +351,11 @@ }, { "default": true, - "id": 11880, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11881, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11882, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11883, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 11884, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -403,9 +363,9 @@ { "id": 11885, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -413,9 +373,9 @@ { "id": 11886, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -423,9 +383,9 @@ { "id": 11887, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -433,9 +393,9 @@ { "id": 11888, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -445,7 +405,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -455,7 +415,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -465,7 +425,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -475,7 +435,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -484,8 +444,8 @@ "id": 11893, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -494,8 +454,8 @@ "id": 11894, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -504,8 +464,8 @@ "id": 11895, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -514,8 +474,8 @@ "id": 11896, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -525,7 +485,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -535,7 +495,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -545,7 +505,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -555,7 +515,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -563,9 +523,9 @@ { "id": 11901, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -573,9 +533,9 @@ { "id": 11902, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -583,9 +543,9 @@ { "id": 11903, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -593,9 +553,9 @@ { "id": 11904, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -605,7 +565,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -615,7 +575,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -625,7 +585,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -635,7 +595,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -644,8 +604,8 @@ "id": 11909, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -654,8 +614,8 @@ "id": 11910, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -664,8 +624,8 @@ "id": 11911, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -674,8 +634,8 @@ "id": 11912, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -685,7 +645,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -695,7 +655,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -705,7 +665,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -715,7 +675,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -723,9 +683,9 @@ { "id": 11917, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -733,9 +693,9 @@ { "id": 11918, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -743,9 +703,9 @@ { "id": 11919, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -753,9 +713,9 @@ { "id": 11920, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -765,7 +725,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -775,7 +735,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -785,7 +745,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -795,7 +755,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -804,8 +764,8 @@ "id": 11925, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -814,8 +774,8 @@ "id": 11926, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -824,8 +784,8 @@ "id": 11927, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -834,8 +794,8 @@ "id": 11928, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -845,7 +805,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -855,7 +815,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -865,13 +825,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 11932, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11933, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11934, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11935, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11936, "properties": { "facing": "east", "half": "lower", @@ -906,52 +906,12 @@ ] }, "states": [ - { - "id": 11517, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11518, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11519, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11520, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 11521, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -961,7 +921,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -971,7 +931,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -981,7 +941,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -990,8 +950,8 @@ "id": 11525, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -1000,8 +960,8 @@ "id": 11526, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -1010,8 +970,8 @@ "id": 11527, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -1020,8 +980,8 @@ "id": 11528, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -1031,7 +991,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -1041,7 +1001,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -1051,7 +1011,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -1061,7 +1021,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -1069,9 +1029,9 @@ { "id": 11533, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -1079,9 +1039,9 @@ { "id": 11534, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -1089,9 +1049,9 @@ { "id": 11535, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -1099,9 +1059,9 @@ { "id": 11536, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -1111,7 +1071,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -1121,7 +1081,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -1131,7 +1091,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -1141,7 +1101,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -1150,8 +1110,8 @@ "id": 11541, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -1160,8 +1120,8 @@ "id": 11542, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -1170,8 +1130,8 @@ "id": 11543, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -1180,8 +1140,8 @@ "id": 11544, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -1191,7 +1151,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -1201,13 +1161,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 11547, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11548, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11549, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11550, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11551, "properties": { "east": "false", "north": "false", @@ -1218,7 +1218,7 @@ }, { "default": true, - "id": 11548, + "id": 11552, "properties": { "east": "false", "north": "false", @@ -1251,47 +1251,11 @@ ] }, "states": [ - { - "id": 11261, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11262, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11263, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11264, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11265, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -1300,13 +1264,49 @@ "id": 11266, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } }, { "id": 11267, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11268, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11269, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11270, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11271, "properties": { "facing": "north", "in_wall": "false", @@ -1316,7 +1316,7 @@ }, { "default": true, - "id": 11268, + "id": 11272, "properties": { "facing": "north", "in_wall": "false", @@ -1324,47 +1324,11 @@ "powered": "false" } }, - { - "id": 11269, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11270, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11271, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11272, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11273, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -1373,7 +1337,7 @@ "id": 11274, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -1382,7 +1346,7 @@ "id": 11275, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -1391,7 +1355,7 @@ "id": 11276, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -1399,8 +1363,8 @@ { "id": 11277, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "true" } @@ -1408,8 +1372,8 @@ { "id": 11278, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "false" } @@ -1417,8 +1381,8 @@ { "id": 11279, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "true" } @@ -1426,8 +1390,8 @@ { "id": 11280, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "false" } @@ -1436,7 +1400,7 @@ "id": 11281, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -1445,7 +1409,7 @@ "id": 11282, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -1454,7 +1418,7 @@ "id": 11283, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -1463,7 +1427,7 @@ "id": 11284, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -1471,8 +1435,8 @@ { "id": 11285, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "true" } @@ -1480,8 +1444,8 @@ { "id": 11286, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "false" } @@ -1489,8 +1453,8 @@ { "id": 11287, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "true" } @@ -1498,8 +1462,8 @@ { "id": 11288, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "false" } @@ -1508,7 +1472,7 @@ "id": 11289, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -1517,7 +1481,7 @@ "id": 11290, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -1526,13 +1490,49 @@ "id": 11291, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } }, { "id": 11292, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11293, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11294, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11295, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11296, "properties": { "facing": "east", "in_wall": "false", @@ -1572,43 +1572,11 @@ ] }, "states": [ - { - "id": 5022, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5023, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5024, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5025, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 5026, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -1616,7 +1584,7 @@ "id": 5027, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -1624,7 +1592,7 @@ "id": 5028, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -1632,7 +1600,7 @@ "id": 5029, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -1640,7 +1608,7 @@ "id": 5030, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -1648,7 +1616,7 @@ "id": 5031, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -1656,7 +1624,7 @@ "id": 5032, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -1664,7 +1632,7 @@ "id": 5033, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -1672,7 +1640,7 @@ "id": 5034, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -1680,7 +1648,7 @@ "id": 5035, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -1688,7 +1656,7 @@ "id": 5036, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -1696,7 +1664,7 @@ "id": 5037, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -1704,7 +1672,7 @@ "id": 5038, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -1712,7 +1680,7 @@ "id": 5039, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -1720,7 +1688,7 @@ "id": 5040, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -1728,7 +1696,7 @@ "id": 5041, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -1736,7 +1704,7 @@ "id": 5042, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -1744,7 +1712,7 @@ "id": 5043, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -1752,7 +1720,7 @@ "id": 5044, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -1760,7 +1728,7 @@ "id": 5045, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -1768,7 +1736,7 @@ "id": 5046, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -1776,7 +1744,7 @@ "id": 5047, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -1784,7 +1752,7 @@ "id": 5048, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -1792,7 +1760,7 @@ "id": 5049, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -1800,7 +1768,7 @@ "id": 5050, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -1808,7 +1776,7 @@ "id": 5051, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -1816,7 +1784,7 @@ "id": 5052, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -1824,12 +1792,44 @@ "id": 5053, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 5054, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5055, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5056, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5057, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5058, "properties": { "attached": "false", "rotation": "0", @@ -1838,50 +1838,18 @@ }, { "default": true, - "id": 5055, + "id": 5059, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5056, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5057, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5058, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5059, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 5060, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -1889,7 +1857,7 @@ "id": 5061, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -1897,7 +1865,7 @@ "id": 5062, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -1905,7 +1873,7 @@ "id": 5063, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -1913,7 +1881,7 @@ "id": 5064, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -1921,7 +1889,7 @@ "id": 5065, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -1929,7 +1897,7 @@ "id": 5066, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -1937,7 +1905,7 @@ "id": 5067, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -1945,7 +1913,7 @@ "id": 5068, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -1953,7 +1921,7 @@ "id": 5069, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -1961,7 +1929,7 @@ "id": 5070, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -1969,7 +1937,7 @@ "id": 5071, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -1977,7 +1945,7 @@ "id": 5072, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -1985,7 +1953,7 @@ "id": 5073, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -1993,7 +1961,7 @@ "id": 5074, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -2001,7 +1969,7 @@ "id": 5075, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -2009,7 +1977,7 @@ "id": 5076, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -2017,7 +1985,7 @@ "id": 5077, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -2025,7 +1993,7 @@ "id": 5078, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -2033,7 +2001,7 @@ "id": 5079, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -2041,7 +2009,7 @@ "id": 5080, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -2049,7 +2017,7 @@ "id": 5081, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -2057,7 +2025,7 @@ "id": 5082, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -2065,7 +2033,7 @@ "id": 5083, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -2073,12 +2041,44 @@ "id": 5084, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 5085, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5086, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5087, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5088, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5089, "properties": { "attached": "false", "rotation": "15", @@ -2108,42 +2108,10 @@ ] }, "states": [ - { - "id": 345, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 346, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 347, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 348, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 349, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -2151,7 +2119,7 @@ { "id": 350, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -2159,7 +2127,7 @@ { "id": 351, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -2167,7 +2135,7 @@ { "id": 352, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -2175,7 +2143,7 @@ { "id": 353, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -2183,7 +2151,7 @@ { "id": 354, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -2191,7 +2159,7 @@ { "id": 355, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -2199,7 +2167,7 @@ { "id": 356, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -2207,7 +2175,7 @@ { "id": 357, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -2215,7 +2183,7 @@ { "id": 358, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -2223,7 +2191,7 @@ { "id": 359, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -2231,7 +2199,7 @@ { "id": 360, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -2239,7 +2207,7 @@ { "id": 361, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -2247,7 +2215,7 @@ { "id": 362, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -2255,7 +2223,7 @@ { "id": 363, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -2263,7 +2231,7 @@ { "id": 364, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -2271,7 +2239,7 @@ { "id": 365, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -2279,7 +2247,7 @@ { "id": 366, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "false" } @@ -2287,7 +2255,7 @@ { "id": 367, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "true" } @@ -2295,7 +2263,7 @@ { "id": 368, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "false" } @@ -2303,7 +2271,7 @@ { "id": 369, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "true" } @@ -2311,13 +2279,45 @@ { "id": 370, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "false" } }, { "id": 371, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 372, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 373, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 374, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 375, "properties": { "distance": "7", "persistent": "false", @@ -2326,7 +2326,7 @@ }, { "default": true, - "id": 372, + "id": 376, "properties": { "distance": "7", "persistent": "false", @@ -2345,20 +2345,20 @@ }, "states": [ { - "id": 138, + "id": 142, "properties": { "axis": "x" } }, { "default": true, - "id": 139, + "id": 143, "properties": { "axis": "y" } }, { - "id": 140, + "id": 144, "properties": { "axis": "z" } @@ -2382,14 +2382,14 @@ }, "states": [ { - "id": 5720, + "id": 5724, "properties": { "powered": "true" } }, { "default": true, - "id": 5721, + "id": 5725, "properties": { "powered": "false" } @@ -2446,7 +2446,7 @@ }, "states": [ { - "id": 4394, + "id": 4398, "properties": { "rotation": "0", "waterlogged": "true" @@ -2454,217 +2454,217 @@ }, { "default": true, - "id": 4395, + "id": 4399, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4396, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4397, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4398, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4399, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4400, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, { "id": 4401, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, { "id": 4402, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, { "id": 4403, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, { "id": 4404, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, { "id": 4405, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, { "id": 4406, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, { "id": 4407, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, { "id": 4408, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, { "id": 4409, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, { "id": 4410, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, { "id": 4411, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, { "id": 4412, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, { "id": 4413, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, { "id": 4414, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, { "id": 4415, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, { "id": 4416, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, { "id": 4417, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, { "id": 4418, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, { "id": 4419, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, { "id": 4420, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, { "id": 4421, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, { "id": 4422, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, { "id": 4423, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, { "id": 4424, "properties": { - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4425, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4426, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4427, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4428, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4429, "properties": { "rotation": "15", "waterlogged": "false" @@ -2686,21 +2686,21 @@ }, "states": [ { - "id": 11041, + "id": 11045, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11042, + "id": 11046, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11043, + "id": 11047, "properties": { "type": "bottom", "waterlogged": "true" @@ -2708,21 +2708,21 @@ }, { "default": true, - "id": 11044, + "id": 11048, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11045, + "id": 11049, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11046, + "id": 11050, "properties": { "type": "double", "waterlogged": "false" @@ -2755,48 +2755,12 @@ ] }, "states": [ - { - "id": 9740, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9741, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9742, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9743, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 9744, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -2805,7 +2769,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -2814,7 +2778,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -2823,7 +2787,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -2832,7 +2796,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -2841,12 +2805,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 9750, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9751, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9752, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9754, "properties": { "facing": "north", "half": "bottom", @@ -2856,47 +2856,11 @@ }, { "default": true, - "id": 9751, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9752, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9753, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9754, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 9755, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -2905,7 +2869,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -2914,7 +2878,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -2923,7 +2887,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -2932,43 +2896,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 9760, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 9761, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 9762, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 9763, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -2977,7 +2941,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -2986,7 +2950,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -2995,7 +2959,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3004,7 +2968,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3013,7 +2977,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -3022,7 +2986,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -3030,8 +2994,8 @@ "id": 9770, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -3039,8 +3003,8 @@ "id": 9771, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -3048,8 +3012,8 @@ "id": 9772, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -3057,8 +3021,8 @@ "id": 9773, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -3067,7 +3031,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -3076,7 +3040,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -3085,7 +3049,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3094,7 +3058,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3103,7 +3067,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -3112,43 +3076,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 9780, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 9781, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 9782, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 9783, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -3157,7 +3121,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -3166,7 +3130,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -3175,7 +3139,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3184,7 +3148,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3193,7 +3157,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -3202,7 +3166,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -3210,8 +3174,8 @@ "id": 9790, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -3219,8 +3183,8 @@ "id": 9791, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -3228,8 +3192,8 @@ "id": 9792, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -3237,8 +3201,8 @@ "id": 9793, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -3247,7 +3211,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -3256,7 +3220,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -3265,7 +3229,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3274,7 +3238,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3283,7 +3247,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -3292,43 +3256,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 9800, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 9801, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 9802, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 9803, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -3337,7 +3301,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -3346,7 +3310,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -3355,7 +3319,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3364,7 +3328,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3373,7 +3337,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -3382,7 +3346,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -3390,8 +3354,8 @@ "id": 9810, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -3399,8 +3363,8 @@ "id": 9811, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -3408,8 +3372,8 @@ "id": 9812, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -3417,8 +3381,8 @@ "id": 9813, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -3427,7 +3391,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -3436,7 +3400,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -3445,7 +3409,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -3454,7 +3418,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -3463,12 +3427,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 9819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9823, "properties": { "facing": "east", "half": "bottom", @@ -3504,52 +3504,12 @@ ] }, "states": [ - { - "id": 6214, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6215, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6216, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6217, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6218, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3559,7 +3519,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -3569,7 +3529,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -3579,7 +3539,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -3588,8 +3548,8 @@ "id": 6222, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -3598,8 +3558,8 @@ "id": 6223, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -3608,8 +3568,8 @@ "id": 6224, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -3618,8 +3578,8 @@ "id": 6225, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -3629,7 +3589,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3639,13 +3599,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 6228, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6229, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6230, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6231, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6232, "properties": { "facing": "north", "half": "bottom", @@ -3656,7 +3656,7 @@ }, { "default": true, - "id": 6229, + "id": 6233, "properties": { "facing": "north", "half": "bottom", @@ -3665,52 +3665,12 @@ "waterlogged": "false" } }, - { - "id": 6230, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6231, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6232, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6233, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6234, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3720,7 +3680,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -3730,7 +3690,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -3740,7 +3700,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -3749,8 +3709,8 @@ "id": 6238, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -3759,8 +3719,8 @@ "id": 6239, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -3769,8 +3729,8 @@ "id": 6240, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -3779,8 +3739,8 @@ "id": 6241, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -3790,7 +3750,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3800,7 +3760,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -3810,7 +3770,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -3820,7 +3780,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -3828,9 +3788,9 @@ { "id": 6246, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -3838,9 +3798,9 @@ { "id": 6247, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -3848,9 +3808,9 @@ { "id": 6248, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -3858,9 +3818,9 @@ { "id": 6249, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -3870,7 +3830,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3880,7 +3840,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -3890,7 +3850,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -3900,7 +3860,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -3909,8 +3869,8 @@ "id": 6254, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -3919,8 +3879,8 @@ "id": 6255, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -3929,8 +3889,8 @@ "id": 6256, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -3939,8 +3899,8 @@ "id": 6257, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -3950,7 +3910,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -3960,7 +3920,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -3970,7 +3930,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -3980,7 +3940,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -3988,9 +3948,9 @@ { "id": 6262, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -3998,9 +3958,9 @@ { "id": 6263, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -4008,9 +3968,9 @@ { "id": 6264, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -4018,9 +3978,9 @@ { "id": 6265, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -4030,7 +3990,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -4040,7 +4000,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -4050,7 +4010,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -4060,7 +4020,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -4069,8 +4029,8 @@ "id": 6270, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -4079,8 +4039,8 @@ "id": 6271, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -4089,8 +4049,8 @@ "id": 6272, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -4099,8 +4059,8 @@ "id": 6273, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -4110,7 +4070,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -4120,7 +4080,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -4130,13 +4090,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 6277, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6278, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6279, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6280, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6281, "properties": { "facing": "east", "half": "bottom", @@ -4162,7 +4162,7 @@ }, "states": [ { - "id": 5558, + "id": 5562, "properties": { "facing": "north", "waterlogged": "true" @@ -4170,49 +4170,49 @@ }, { "default": true, - "id": 5559, + "id": 5563, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5560, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5561, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5562, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5563, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5564, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5565, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5566, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5567, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5568, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5565, + "id": 5569, "properties": { "facing": "east", "waterlogged": "false" @@ -4235,7 +4235,7 @@ }, "states": [ { - "id": 4782, + "id": 4786, "properties": { "facing": "north", "waterlogged": "true" @@ -4243,49 +4243,49 @@ }, { "default": true, - "id": 4783, + "id": 4787, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4784, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4785, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4786, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4787, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4788, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4789, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4790, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4791, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4792, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4789, + "id": 4793, "properties": { "facing": "east", "waterlogged": "false" @@ -4303,20 +4303,20 @@ }, "states": [ { - "id": 197, + "id": 201, "properties": { "axis": "x" } }, { "default": true, - "id": 198, + "id": 202, "properties": { "axis": "y" } }, { - "id": 199, + "id": 203, "properties": { "axis": "z" } @@ -4343,43 +4343,11 @@ ] }, "states": [ - { - "id": 9176, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 9177, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 9178, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 9179, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, { "id": 9180, "properties": { "powered": "true", - "shape": "ascending_east", + "shape": "north_south", "waterlogged": "true" } }, @@ -4387,7 +4355,7 @@ "id": 9181, "properties": { "powered": "true", - "shape": "ascending_east", + "shape": "north_south", "waterlogged": "false" } }, @@ -4395,7 +4363,7 @@ "id": 9182, "properties": { "powered": "true", - "shape": "ascending_west", + "shape": "east_west", "waterlogged": "true" } }, @@ -4403,7 +4371,7 @@ "id": 9183, "properties": { "powered": "true", - "shape": "ascending_west", + "shape": "east_west", "waterlogged": "false" } }, @@ -4411,7 +4379,7 @@ "id": 9184, "properties": { "powered": "true", - "shape": "ascending_north", + "shape": "ascending_east", "waterlogged": "true" } }, @@ -4419,7 +4387,7 @@ "id": 9185, "properties": { "powered": "true", - "shape": "ascending_north", + "shape": "ascending_east", "waterlogged": "false" } }, @@ -4427,7 +4395,7 @@ "id": 9186, "properties": { "powered": "true", - "shape": "ascending_south", + "shape": "ascending_west", "waterlogged": "true" } }, @@ -4435,12 +4403,44 @@ "id": 9187, "properties": { "powered": "true", - "shape": "ascending_south", + "shape": "ascending_west", "waterlogged": "false" } }, { "id": 9188, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9189, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9190, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9191, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 9192, "properties": { "powered": "false", "shape": "north_south", @@ -4449,50 +4449,18 @@ }, { "default": true, - "id": 9189, + "id": 9193, "properties": { "powered": "false", "shape": "north_south", "waterlogged": "false" } }, - { - "id": 9190, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 9191, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 9192, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 9193, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, { "id": 9194, "properties": { "powered": "false", - "shape": "ascending_west", + "shape": "east_west", "waterlogged": "true" } }, @@ -4500,7 +4468,7 @@ "id": 9195, "properties": { "powered": "false", - "shape": "ascending_west", + "shape": "east_west", "waterlogged": "false" } }, @@ -4508,7 +4476,7 @@ "id": 9196, "properties": { "powered": "false", - "shape": "ascending_north", + "shape": "ascending_east", "waterlogged": "true" } }, @@ -4516,7 +4484,7 @@ "id": 9197, "properties": { "powered": "false", - "shape": "ascending_north", + "shape": "ascending_east", "waterlogged": "false" } }, @@ -4524,12 +4492,44 @@ "id": 9198, "properties": { "powered": "false", - "shape": "ascending_south", + "shape": "ascending_west", "waterlogged": "true" } }, { "id": 9199, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 9200, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9201, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9202, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9203, "properties": { "powered": "false", "shape": "ascending_south", @@ -4550,7 +4550,7 @@ "states": [ { "default": true, - "id": 2075 + "id": 2079 } ] }, @@ -4558,7 +4558,7 @@ "states": [ { "default": true, - "id": 20872 + "id": 20890 } ] }, @@ -4579,63 +4579,63 @@ }, "states": [ { - "id": 20874, + "id": 20892, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 20875, + "id": 20893, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 20876, + "id": 20894, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 20877, + "id": 20895, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 20878, + "id": 20896, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 20879, + "id": 20897, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 20880, + "id": 20898, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 20881, + "id": 20899, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 20882, + "id": 20900, "properties": { "facing": "up", "waterlogged": "true" @@ -4643,21 +4643,21 @@ }, { "default": true, - "id": 20883, + "id": 20901, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 20884, + "id": 20902, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 20885, + "id": 20903, "properties": { "facing": "down", "waterlogged": "false" @@ -4669,7 +4669,7 @@ "states": [ { "default": true, - "id": 19289 + "id": 19307 } ] }, @@ -4682,68999 +4682,6 @@ ] }, "minecraft:andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13977, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13978, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13979, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13980, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13981, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13982, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13603, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13604, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13605, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13606, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13607, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13608, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13609, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13610, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13611, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13612, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13613, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13614, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13615, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13616, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13617, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13618, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13619, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13620, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13621, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13622, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13623, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13624, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13625, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13626, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13627, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13628, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13629, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13630, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13631, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13632, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13633, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13634, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13635, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13636, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13637, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13638, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13639, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13640, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13641, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13642, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13643, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13644, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13645, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13646, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13647, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13648, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13649, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13650, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13651, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13652, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13653, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13654, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13655, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13656, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13657, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13658, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13659, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13660, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13661, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13662, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13663, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13664, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13665, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13666, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13667, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13668, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13669, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13670, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13671, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13672, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13673, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13674, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13675, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13676, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13677, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13678, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13679, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13680, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13681, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13682, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:andesite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 16593, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16594, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16595, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 16596, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16597, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16598, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16599, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16600, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16601, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16602, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16603, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16604, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16605, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16606, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16607, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16608, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16609, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16610, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16611, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16612, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16613, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16614, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16615, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16616, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16617, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16618, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16619, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16620, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16621, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16622, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16623, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16624, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16625, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16626, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16627, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16628, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16629, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16630, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16631, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16632, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16633, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16634, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16635, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16636, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16637, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16638, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16639, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16640, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16641, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16642, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16643, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16644, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16645, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16646, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16647, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16648, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16649, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16650, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16651, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16652, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16653, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16654, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16655, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16656, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16657, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16658, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16659, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16660, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16661, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16662, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16663, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16664, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16665, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16666, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16667, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16668, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16669, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16670, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16671, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16672, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16673, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16674, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16675, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16676, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16677, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16678, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16679, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16680, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16681, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16682, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16683, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16684, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16685, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16686, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16687, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16688, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16689, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16690, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16691, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16692, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16693, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16694, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16695, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16696, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16697, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16698, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16699, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16700, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16701, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16702, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16703, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16704, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16705, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16706, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16707, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16708, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16709, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16710, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16711, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16712, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16713, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16714, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16715, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16716, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16717, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16718, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16719, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16720, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16721, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16722, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16723, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16724, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16725, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16726, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16727, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16728, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16729, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16730, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16731, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16732, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16733, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16734, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16735, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16736, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16737, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16738, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16739, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16740, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16741, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16742, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16743, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16744, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16745, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16746, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16747, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16748, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16749, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16750, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16751, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16752, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16753, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16754, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16755, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16756, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16757, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16758, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16759, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16760, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16761, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16762, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16763, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16764, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16765, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16766, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16767, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16768, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16769, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16770, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16771, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16772, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16773, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16774, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16775, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16776, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16777, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16778, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16779, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16780, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16781, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16782, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16783, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16784, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16785, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16786, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16787, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16788, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16789, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16790, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16791, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16792, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16793, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16794, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16795, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16796, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16797, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16798, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16799, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16800, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16801, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16802, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16803, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16804, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16805, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16806, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16807, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16808, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16809, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16810, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16811, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16812, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16813, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16814, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16815, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16816, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16817, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16818, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16819, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16820, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16821, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16822, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16823, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16824, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16825, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16826, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16827, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16828, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16829, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16830, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16831, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16832, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16833, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16834, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16835, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16836, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16837, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16838, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16839, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16840, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16841, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16842, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16843, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16844, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16845, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16846, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16847, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16848, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16849, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16850, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16851, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16852, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16853, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16854, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16855, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16856, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16857, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16858, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16859, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16860, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16861, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16862, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16863, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16864, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16865, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16866, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16867, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16868, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16869, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16870, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16871, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16872, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16873, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16874, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16875, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16876, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16877, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16878, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16879, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16880, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16881, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16882, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16883, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16884, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16885, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16886, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16887, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16888, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16889, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16890, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16891, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16892, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16893, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16894, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16895, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16896, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16897, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16898, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16899, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16900, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16901, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16902, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16903, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16904, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16905, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16906, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16907, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16908, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16909, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16910, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16911, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16912, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16913, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16914, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16915, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16916, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8963, - "properties": { - "facing": "north" - } - }, - { - "id": 8964, - "properties": { - "facing": "south" - } - }, - { - "id": 8965, - "properties": { - "facing": "west" - } - }, - { - "id": 8966, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:attached_melon_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 6813, - "properties": { - "facing": "north" - } - }, - { - "id": 6814, - "properties": { - "facing": "south" - } - }, - { - "id": 6815, - "properties": { - "facing": "west" - } - }, - { - "id": 6816, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:attached_pumpkin_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 6809, - "properties": { - "facing": "north" - } - }, - { - "id": 6810, - "properties": { - "facing": "south" - } - }, - { - "id": 6811, - "properties": { - "facing": "west" - } - }, - { - "id": 6812, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:azalea": { - "states": [ - { - "default": true, - "id": 21967 - } - ] - }, - "minecraft:azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 457, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 458, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 459, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 460, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 461, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 462, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 463, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 464, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 465, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 466, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 467, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 468, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 469, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 470, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 471, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 472, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 473, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 474, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 475, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 476, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 477, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 478, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 479, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 480, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 481, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 482, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 483, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 484, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:azure_bluet": { - "states": [ - { - "default": true, - "id": 2076 - } - ] - }, - "minecraft:bamboo": { - "properties": { - "age": [ - "0", - "1" - ], - "leaves": [ - "none", - "small", - "large" - ], - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 12786, - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 12787, - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 12788, - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 12789, - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - } - }, - { - "id": 12790, - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - } - }, - { - "id": 12791, - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - } - }, - { - "id": 12792, - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 12793, - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 12794, - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 12795, - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - } - }, - { - "id": 12796, - "properties": { - "age": "1", - "leaves": "large", - "stage": "0" - } - }, - { - "id": 12797, - "properties": { - "age": "1", - "leaves": "large", - "stage": "1" - } - } - ] - }, - "minecraft:bamboo_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 155, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 156, - "properties": { - "axis": "y" - } - }, - { - "id": 157, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:bamboo_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8799, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8800, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8801, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8802, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8803, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8804, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8805, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8806, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8807, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8808, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8809, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8810, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8811, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8812, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8813, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8814, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8815, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8816, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8817, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8818, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8819, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8820, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8821, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8822, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12125, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12126, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12127, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12128, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12129, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12130, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12131, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12132, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12133, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12134, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12135, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 12136, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12137, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12138, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12139, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12140, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12141, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12142, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12143, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12144, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12145, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12146, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12147, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12148, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12149, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12150, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12151, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12152, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12153, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12154, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12155, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12156, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12157, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12158, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12159, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12160, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12161, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12162, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12163, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12164, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12165, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12166, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12167, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12168, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12169, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12170, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12171, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12172, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12173, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12174, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12175, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12176, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12177, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12178, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12179, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12180, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12181, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12182, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12183, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12184, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12185, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12186, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12187, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12188, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11645, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11646, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11647, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11648, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11649, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11650, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11651, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11652, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11653, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11654, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11655, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11656, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11657, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11658, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11659, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11660, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11661, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11662, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11663, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11664, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11665, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11666, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11667, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11668, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11669, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11670, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11671, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11672, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11673, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11674, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11675, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11676, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:bamboo_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11389, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11390, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11391, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11392, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11393, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11394, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11395, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11396, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11397, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11398, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11399, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11400, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11401, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11402, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11403, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11404, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11405, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11406, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11407, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11408, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11409, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11410, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11411, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11412, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11413, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11414, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11415, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11416, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11417, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11418, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11419, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11420, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5470, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5471, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5472, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5473, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5474, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5475, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5476, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5477, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5478, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5479, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5480, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5481, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5482, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5483, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5484, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5485, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5486, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5487, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5488, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5489, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5490, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5491, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5492, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5493, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5494, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5495, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5496, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5497, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5498, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5499, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5500, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5501, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5502, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5503, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5504, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5505, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5506, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5507, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5508, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5509, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5510, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5511, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5512, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5513, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5514, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5515, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5516, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5517, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5518, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5519, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5520, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5521, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5522, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5523, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5524, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5525, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5526, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5527, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5528, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5529, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5530, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5531, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5532, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5533, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_mosaic": { - "states": [ - { - "default": true, - "id": 24 - } - ] - }, - "minecraft:bamboo_mosaic_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11071, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11072, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11073, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11074, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11075, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11076, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_mosaic_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10140, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10141, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10142, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10143, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10144, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10145, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10146, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10147, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10148, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10149, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10150, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10151, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10152, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10153, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10154, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10155, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10156, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10157, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10158, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10159, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10160, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10161, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10162, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10163, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10164, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10165, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10166, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10167, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10168, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10169, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10170, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10171, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10172, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10173, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10174, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10175, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10176, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10177, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10178, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10179, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10180, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10181, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10182, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10183, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10184, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10185, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10186, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10187, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10188, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10189, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10190, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10191, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10192, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10193, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10194, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10195, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10196, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10197, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10198, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10199, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10200, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10201, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10202, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10203, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10204, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10205, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10206, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10207, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10208, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10209, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10210, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10211, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10212, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10213, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10214, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10215, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10216, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10217, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10218, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10219, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_planks": { - "states": [ - { - "default": true, - "id": 23 - } - ] - }, - "minecraft:bamboo_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5728, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5729, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_sapling": { - "states": [ - { - "default": true, - "id": 12785 - } - ] - }, - "minecraft:bamboo_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4554, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4555, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4556, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4557, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4558, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4559, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4560, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4561, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4562, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4563, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4564, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4565, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4566, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4567, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4568, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4569, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4570, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4571, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4572, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4573, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4574, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4575, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4576, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4577, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4578, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4579, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4580, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4581, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4582, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4583, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4584, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4585, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11065, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11066, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11067, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11068, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11069, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11070, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10060, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10061, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10062, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10063, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10064, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10065, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10066, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10067, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10068, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10069, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10070, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10071, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10072, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10073, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10074, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10075, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10076, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10077, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10078, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10079, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10080, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10081, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10082, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10083, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10084, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10085, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10086, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10087, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10088, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10089, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10090, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10091, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10092, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10093, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10094, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10095, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10096, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10097, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10098, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10099, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10100, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10101, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10102, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10103, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10104, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10105, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10106, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10107, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10108, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10109, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10110, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10111, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10112, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10113, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10114, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10115, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10116, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10117, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10118, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10119, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10120, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10121, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10122, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10123, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10124, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10125, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10126, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10127, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10128, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10129, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10130, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10131, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10132, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10133, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10134, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10135, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10136, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10137, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10138, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10139, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6470, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6471, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6472, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6473, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6474, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6475, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6476, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6477, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6478, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6479, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6480, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6481, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6482, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6483, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6484, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6485, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6486, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6487, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6488, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6489, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6490, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6491, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6492, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6493, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6494, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6495, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6496, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6497, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6498, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6499, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6500, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6501, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6502, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6503, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6504, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6505, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6506, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6507, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6508, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6509, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6510, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6511, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6512, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6513, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6514, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6515, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6516, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6517, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6518, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6519, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6520, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6521, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6522, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6523, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6524, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6525, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6526, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6527, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6528, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6529, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6530, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6531, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6532, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6533, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5614, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5615, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5616, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5617, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5618, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5619, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5620, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5621, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4822, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4823, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4824, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4825, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4826, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4827, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4828, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4829, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:barrel": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "open": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18249, - "properties": { - "facing": "north", - "open": "true" - } - }, - { - "default": true, - "id": 18250, - "properties": { - "facing": "north", - "open": "false" - } - }, - { - "id": 18251, - "properties": { - "facing": "east", - "open": "true" - } - }, - { - "id": 18252, - "properties": { - "facing": "east", - "open": "false" - } - }, - { - "id": 18253, - "properties": { - "facing": "south", - "open": "true" - } - }, - { - "id": 18254, - "properties": { - "facing": "south", - "open": "false" - } - }, - { - "id": 18255, - "properties": { - "facing": "west", - "open": "true" - } - }, - { - "id": 18256, - "properties": { - "facing": "west", - "open": "false" - } - }, - { - "id": 18257, - "properties": { - "facing": "up", - "open": "true" - } - }, - { - "id": 18258, - "properties": { - "facing": "up", - "open": "false" - } - }, - { - "id": 18259, - "properties": { - "facing": "down", - "open": "true" - } - }, - { - "id": 18260, - "properties": { - "facing": "down", - "open": "false" - } - } - ] - }, - "minecraft:barrier": { - "states": [ - { - "default": true, - "id": 10221 - } - ] - }, - "minecraft:basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 5849, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 5850, - "properties": { - "axis": "y" - } - }, - { - "id": 5851, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:beacon": { - "states": [ - { - "default": true, - "id": 7914 - } - ] - }, - "minecraft:bedrock": { - "states": [ - { - "default": true, - "id": 79 - } - ] - }, - "minecraft:bee_nest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 19238, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 19239, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 19240, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 19241, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 19242, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 19243, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 19244, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 19245, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 19246, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 19247, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 19248, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 19249, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 19250, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 19251, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 19252, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { - "id": 19253, - "properties": { - "facing": "west", - "honey_level": "3" - } - }, - { - "id": 19254, - "properties": { - "facing": "west", - "honey_level": "4" - } - }, - { - "id": 19255, - "properties": { - "facing": "west", - "honey_level": "5" - } - }, - { - "id": 19256, - "properties": { - "facing": "east", - "honey_level": "0" - } - }, - { - "id": 19257, - "properties": { - "facing": "east", - "honey_level": "1" - } - }, - { - "id": 19258, - "properties": { - "facing": "east", - "honey_level": "2" - } - }, - { - "id": 19259, - "properties": { - "facing": "east", - "honey_level": "3" - } - }, - { - "id": 19260, - "properties": { - "facing": "east", - "honey_level": "4" - } - }, - { - "id": 19261, - "properties": { - "facing": "east", - "honey_level": "5" - } - } - ] - }, - "minecraft:beehive": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 19262, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 19263, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 19264, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 19265, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 19266, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 19267, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 19268, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 19269, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 19270, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 19271, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 19272, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 19273, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 19274, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 19275, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 19276, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { - "id": 19277, - "properties": { - "facing": "west", - "honey_level": "3" - } - }, - { - "id": 19278, - "properties": { - "facing": "west", - "honey_level": "4" - } - }, - { - "id": 19279, - "properties": { - "facing": "west", - "honey_level": "5" - } - }, - { - "id": 19280, - "properties": { - "facing": "east", - "honey_level": "0" - } - }, - { - "id": 19281, - "properties": { - "facing": "east", - "honey_level": "1" - } - }, - { - "id": 19282, - "properties": { - "facing": "east", - "honey_level": "2" - } - }, - { - "id": 19283, - "properties": { - "facing": "east", - "honey_level": "3" - } - }, - { - "id": 19284, - "properties": { - "facing": "east", - "honey_level": "4" - } - }, - { - "id": 19285, - "properties": { - "facing": "east", - "honey_level": "5" - } - } - ] - }, - "minecraft:beetroots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 12353, - "properties": { - "age": "0" - } - }, - { - "id": 12354, - "properties": { - "age": "1" - } - }, - { - "id": 12355, - "properties": { - "age": "2" - } - }, - { - "id": 12356, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:bell": { - "properties": { - "attachment": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18312, - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 18313, - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18314, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18315, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18316, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18317, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18318, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18319, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18320, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18321, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18322, - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18323, - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18324, - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18325, - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18326, - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18327, - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18328, - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18329, - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18330, - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18331, - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18332, - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18333, - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18334, - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18335, - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18336, - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18337, - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18338, - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18339, - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18340, - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18341, - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18342, - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18343, - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:big_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "tilt": [ - "none", - "unstable", - "partial", - "full" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21987, - "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21988, - "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 21989, - "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 21990, - "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 21991, - "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 21992, - "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 21993, - "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 21994, - "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 21995, - "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 21996, - "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 21997, - "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 21998, - "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 21999, - "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22000, - "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22001, - "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22002, - "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 22003, - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 22004, - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22005, - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22006, - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22007, - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22008, - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22009, - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22010, - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 22011, - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 22012, - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22013, - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22014, - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22015, - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22016, - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22017, - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22018, - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "false" - } - } - ] - }, - "minecraft:big_dripleaf_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22019, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22020, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 22021, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 22022, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 22023, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 22024, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 22025, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 22026, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8655, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8656, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8657, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8658, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8659, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8660, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8661, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8662, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8663, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8664, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8665, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8666, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8667, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8668, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8669, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8670, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8671, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8672, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8673, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8674, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8675, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8676, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8677, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8678, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:birch_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11741, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11742, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11743, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11744, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11745, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11746, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11747, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11748, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11749, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11750, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11751, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11752, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11753, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11754, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11755, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11756, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11757, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11758, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11759, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11760, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11761, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11762, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11763, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11764, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11765, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11766, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11767, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11768, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11769, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11770, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11771, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11772, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11773, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11774, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11775, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11776, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11777, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11778, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11779, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11780, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11781, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11782, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11783, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11784, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11785, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11786, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11787, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11788, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11789, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11790, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11791, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11792, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11793, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11794, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11795, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11796, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11797, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11798, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11799, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11800, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11801, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11802, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11803, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11804, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:birch_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11453, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11454, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11455, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11456, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11457, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11458, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11459, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11460, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11461, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11462, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11463, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11464, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11465, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11466, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11467, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11468, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11469, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11470, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11471, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11472, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11473, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11474, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11475, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11476, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11477, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11478, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11479, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11480, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11481, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11482, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11483, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11484, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:birch_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11197, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11198, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11199, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11200, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11201, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11202, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11203, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11204, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11205, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11206, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11207, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11208, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11209, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11210, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11211, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11212, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11213, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11214, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11215, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11216, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11217, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11218, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11219, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11220, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11221, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11222, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11223, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11224, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11225, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11226, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11227, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11228, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:birch_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4958, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4959, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4960, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4961, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4962, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4963, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4964, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4965, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4966, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4967, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4968, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4969, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4970, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4971, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4972, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4973, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4974, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4975, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4976, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4977, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4978, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4979, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4980, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4981, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4982, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4983, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4984, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4985, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4986, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4987, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4988, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4989, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 4990, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4991, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4992, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4993, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4994, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4995, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4996, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4997, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4998, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4999, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5000, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5001, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5002, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5003, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5004, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5005, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5006, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5007, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5008, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5009, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5010, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5011, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5012, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5013, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5014, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5015, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5016, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5017, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5018, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5019, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5020, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5021, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 289, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 290, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 291, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 292, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 293, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 294, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 295, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 296, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 297, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 298, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 299, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 300, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 301, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 302, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 303, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 304, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 305, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 306, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 307, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 308, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 309, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 310, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 311, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 312, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 313, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 314, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 315, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 316, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 132, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 133, - "properties": { - "axis": "y" - } - }, - { - "id": 134, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:birch_planks": { - "states": [ - { - "default": true, - "id": 17 - } - ] - }, - "minecraft:birch_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5716, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5717, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:birch_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 29, - "properties": { - "stage": "0" - } - }, - { - "id": 30, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:birch_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4362, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4363, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4364, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4365, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4366, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4367, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4368, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4369, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4370, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4371, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4372, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4373, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4374, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4375, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4376, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4377, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4378, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4379, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4380, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4381, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4382, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4383, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4384, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4385, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4386, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4387, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4388, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4389, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4390, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4391, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4392, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4393, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11029, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11030, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11031, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11032, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11033, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11034, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7742, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7743, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7744, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7745, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7746, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7747, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7748, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7749, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7750, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7751, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7752, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7753, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7754, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7755, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7756, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7757, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7758, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7759, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7760, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7761, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7762, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7763, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7764, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7765, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7766, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7767, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7768, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7769, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7770, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7771, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7772, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7773, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7774, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7775, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7776, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7777, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7778, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7779, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7780, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7781, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7782, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7783, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7784, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7785, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7786, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7787, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7788, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7789, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7790, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7791, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7792, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7793, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7794, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7795, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7796, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7797, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7798, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7799, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7800, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7801, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7802, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7803, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7804, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7805, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7806, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7807, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7808, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7809, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7810, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7811, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7812, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7813, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7814, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7815, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7816, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7817, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7818, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7819, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7820, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7821, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6086, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6087, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6088, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6089, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6090, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6091, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6092, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6093, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6094, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6095, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6096, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6097, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6098, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6099, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6100, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6101, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6102, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6103, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6104, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6105, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6106, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6107, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6108, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6109, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6110, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6111, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6112, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6113, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6114, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6115, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6116, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6117, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6118, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6119, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6120, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6121, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6122, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6123, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6124, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6125, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6126, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6127, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6128, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6129, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6130, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6131, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6132, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6133, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6134, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6135, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6136, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6137, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6138, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6139, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6140, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6141, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6142, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6143, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6144, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6145, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6146, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6147, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6148, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6149, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5550, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5551, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5552, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5553, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5554, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5555, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5556, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5557, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4774, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4775, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4776, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4777, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4778, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4779, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4780, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4781, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 191, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 192, - "properties": { - "axis": "y" - } - }, - { - "id": 193, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:black_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10854, - "properties": { - "rotation": "0" - } - }, - { - "id": 10855, - "properties": { - "rotation": "1" - } - }, - { - "id": 10856, - "properties": { - "rotation": "2" - } - }, - { - "id": 10857, - "properties": { - "rotation": "3" - } - }, - { - "id": 10858, - "properties": { - "rotation": "4" - } - }, - { - "id": 10859, - "properties": { - "rotation": "5" - } - }, - { - "id": 10860, - "properties": { - "rotation": "6" - } - }, - { - "id": 10861, - "properties": { - "rotation": "7" - } - }, - { - "id": 10862, - "properties": { - "rotation": "8" - } - }, - { - "id": 10863, - "properties": { - "rotation": "9" - } - }, - { - "id": 10864, - "properties": { - "rotation": "10" - } - }, - { - "id": 10865, - "properties": { - "rotation": "11" - } - }, - { - "id": 10866, - "properties": { - "rotation": "12" - } - }, - { - "id": 10867, - "properties": { - "rotation": "13" - } - }, - { - "id": 10868, - "properties": { - "rotation": "14" - } - }, - { - "id": 10869, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:black_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1924, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1925, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1926, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1927, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1928, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1929, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1930, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1931, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1932, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1933, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1934, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1935, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1936, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1937, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1938, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1939, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:black_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20822, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20823, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20824, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20825, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20826, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20827, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20828, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20829, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20830, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20831, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20832, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20833, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20834, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20835, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20836, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20837, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:black_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20870, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20871, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:black_carpet": { - "states": [ - { - "default": true, - "id": 10598 - } - ] - }, - "minecraft:black_concrete": { - "states": [ - { - "default": true, - "id": 12587 - } - ] - }, - "minecraft:black_concrete_powder": { - "states": [ - { - "default": true, - "id": 12603 - } - ] - }, - "minecraft:black_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12568, - "properties": { - "facing": "north" - } - }, - { - "id": 12569, - "properties": { - "facing": "south" - } - }, - { - "id": 12570, - "properties": { - "facing": "west" - } - }, - { - "id": 12571, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:black_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12502, - "properties": { - "facing": "north" - } - }, - { - "id": 12503, - "properties": { - "facing": "east" - } - }, - { - "id": 12504, - "properties": { - "facing": "south" - } - }, - { - "id": 12505, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12506, - "properties": { - "facing": "up" - } - }, - { - "id": 12507, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:black_stained_glass": { - "states": [ - { - "default": true, - "id": 5957 - } - ] - }, - "minecraft:black_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9708, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9709, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9710, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9711, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9712, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9713, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9714, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9715, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9716, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9717, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9718, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9719, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9720, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9721, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9722, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9723, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9724, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9725, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9726, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9727, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9728, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9729, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9730, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9731, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9732, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9733, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9734, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9735, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9736, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9737, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9738, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9739, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:black_terracotta": { - "states": [ - { - "default": true, - "id": 9227 - } - ] - }, - "minecraft:black_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10930, - "properties": { - "facing": "north" - } - }, - { - "id": 10931, - "properties": { - "facing": "south" - } - }, - { - "id": 10932, - "properties": { - "facing": "west" - } - }, - { - "id": 10933, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:black_wool": { - "states": [ - { - "default": true, - "id": 2058 - } - ] - }, - "minecraft:blackstone": { - "states": [ - { - "default": true, - "id": 19301 - } - ] - }, - "minecraft:blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19706, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 19707, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 19708, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19709, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 19710, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 19711, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19302, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19303, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19304, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19305, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19306, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19307, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19308, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19309, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19310, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19311, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19312, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19313, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19314, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19315, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19316, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19317, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19318, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19319, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19320, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19321, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19322, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19323, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19324, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19325, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19326, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19327, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19328, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19329, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19330, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19331, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19332, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19333, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19334, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19335, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19336, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19337, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19338, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19339, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19340, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19341, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19342, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19343, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19344, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19345, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19346, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19347, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19348, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19349, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19350, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19351, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19352, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19353, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19354, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19355, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19356, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19357, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19358, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19359, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19360, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19361, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19362, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19363, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19364, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19365, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19366, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19367, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19368, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19369, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19370, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19371, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19372, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19373, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19374, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19375, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19376, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19377, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19378, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19379, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19380, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19381, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 19382, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19383, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19384, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 19385, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19386, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19387, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19388, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19389, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19390, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19391, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19392, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19393, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19394, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19395, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19396, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19397, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19398, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19399, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19400, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19401, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19402, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19403, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19404, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19405, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19406, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19407, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19408, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19409, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19410, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19411, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19412, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19413, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19414, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19415, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19416, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19417, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19418, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19419, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19420, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19421, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19422, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19423, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19424, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19425, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19426, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19427, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19428, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19429, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19430, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19431, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19432, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19433, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19434, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19435, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19436, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19437, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19438, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19439, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19440, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19441, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19442, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19443, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19444, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19445, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19446, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19447, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19448, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19449, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19450, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19451, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19452, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19453, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19454, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19455, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19456, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19457, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19458, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19459, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19460, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19461, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19462, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19463, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19464, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19465, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19466, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19467, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19468, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19469, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19470, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19471, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19472, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19473, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19474, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19475, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19476, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19477, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19478, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19479, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19480, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19481, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19482, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19483, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19484, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19485, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19486, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19487, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19488, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19489, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19490, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19491, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19492, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19493, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19494, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19495, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19496, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19497, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19498, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19499, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19500, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19501, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19502, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19503, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19504, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19505, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19506, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19507, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19508, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19509, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19510, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19511, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19512, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19513, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19514, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19515, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19516, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19517, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19518, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19519, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19520, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19521, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19522, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19523, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19524, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19525, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19526, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19527, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19528, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19529, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19530, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19531, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19532, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19533, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19534, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19535, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19536, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19537, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19538, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19539, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19540, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19541, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19542, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19543, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19544, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19545, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19546, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19547, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19548, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19549, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19550, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19551, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19552, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19553, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19554, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19555, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19556, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19557, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19558, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19559, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19560, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19561, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19562, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19563, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19564, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19565, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19566, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19567, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19568, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19569, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19570, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19571, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19572, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19573, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19574, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19575, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19576, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19577, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19578, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19579, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19580, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19581, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19582, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19583, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19584, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19585, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19586, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19587, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19588, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19589, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19590, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19591, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19592, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19593, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19594, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19595, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19596, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19597, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19598, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19599, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19600, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19601, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19602, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19603, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19604, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19605, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19606, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19607, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19608, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19609, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19610, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19611, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19612, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19613, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19614, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19615, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19616, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19617, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19618, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19619, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19620, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19621, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19622, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19623, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19624, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19625, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19626, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19627, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19628, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19629, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19630, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19631, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19632, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19633, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19634, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19635, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19636, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19637, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19638, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19639, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19640, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19641, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19642, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19643, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19644, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19645, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19646, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19647, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19648, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19649, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19650, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19651, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19652, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19653, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19654, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19655, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19656, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19657, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19658, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19659, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19660, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19661, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19662, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19663, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19664, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19665, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19666, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19667, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19668, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19669, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19670, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19671, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19672, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19673, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19674, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19675, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19676, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19677, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19678, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19679, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19680, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19681, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19682, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19683, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19684, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19685, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19686, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19687, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19688, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19689, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19690, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19691, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19692, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19693, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19694, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19695, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19696, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19697, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19698, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19699, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19700, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19701, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19702, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19703, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19704, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19705, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:blast_furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18269, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 18270, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 18271, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 18272, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 18273, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 18274, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 18275, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 18276, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10790, - "properties": { - "rotation": "0" - } - }, - { - "id": 10791, - "properties": { - "rotation": "1" - } - }, - { - "id": 10792, - "properties": { - "rotation": "2" - } - }, - { - "id": 10793, - "properties": { - "rotation": "3" - } - }, - { - "id": 10794, - "properties": { - "rotation": "4" - } - }, - { - "id": 10795, - "properties": { - "rotation": "5" - } - }, - { - "id": 10796, - "properties": { - "rotation": "6" - } - }, - { - "id": 10797, - "properties": { - "rotation": "7" - } - }, - { - "id": 10798, - "properties": { - "rotation": "8" - } - }, - { - "id": 10799, - "properties": { - "rotation": "9" - } - }, - { - "id": 10800, - "properties": { - "rotation": "10" - } - }, - { - "id": 10801, - "properties": { - "rotation": "11" - } - }, - { - "id": 10802, - "properties": { - "rotation": "12" - } - }, - { - "id": 10803, - "properties": { - "rotation": "13" - } - }, - { - "id": 10804, - "properties": { - "rotation": "14" - } - }, - { - "id": 10805, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1860, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1861, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1862, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1863, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1864, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1865, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1866, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1867, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1868, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1869, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1870, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1871, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1872, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1873, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1874, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1875, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20758, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20759, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20760, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20761, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20762, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20763, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20764, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20765, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20766, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20767, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20768, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20769, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20770, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20771, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20772, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20773, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20862, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20863, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:blue_carpet": { - "states": [ - { - "default": true, - "id": 10594 - } - ] - }, - "minecraft:blue_concrete": { - "states": [ - { - "default": true, - "id": 12583 - } - ] - }, - "minecraft:blue_concrete_powder": { - "states": [ - { - "default": true, - "id": 12599 - } - ] - }, - "minecraft:blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12552, - "properties": { - "facing": "north" - } - }, - { - "id": 12553, - "properties": { - "facing": "south" - } - }, - { - "id": 12554, - "properties": { - "facing": "west" - } - }, - { - "id": 12555, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:blue_ice": { - "states": [ - { - "default": true, - "id": 12782 - } - ] - }, - "minecraft:blue_orchid": { - "states": [ - { - "default": true, - "id": 2074 - } - ] - }, - "minecraft:blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12478, - "properties": { - "facing": "north" - } - }, - { - "id": 12479, - "properties": { - "facing": "east" - } - }, - { - "id": 12480, - "properties": { - "facing": "south" - } - }, - { - "id": 12481, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12482, - "properties": { - "facing": "up" - } - }, - { - "id": 12483, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:blue_stained_glass": { - "states": [ - { - "default": true, - "id": 5953 - } - ] - }, - "minecraft:blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9580, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9581, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9582, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9583, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9584, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9585, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9586, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9587, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9588, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9589, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9590, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9591, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9592, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9593, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9594, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9595, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9596, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9597, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9598, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9599, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9600, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9601, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9602, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9603, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9604, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9605, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9606, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9607, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9608, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9609, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9610, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9611, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:blue_terracotta": { - "states": [ - { - "default": true, - "id": 9223 - } - ] - }, - "minecraft:blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10914, - "properties": { - "facing": "north" - } - }, - { - "id": 10915, - "properties": { - "facing": "south" - } - }, - { - "id": 10916, - "properties": { - "facing": "west" - } - }, - { - "id": 10917, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:blue_wool": { - "states": [ - { - "default": true, - "id": 2054 - } - ] - }, - "minecraft:bone_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 12390, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 12391, - "properties": { - "axis": "y" - } - }, - { - "id": 12392, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:bookshelf": { - "states": [ - { - "default": true, - "id": 2092 - } - ] - }, - "minecraft:brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12666, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12667, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:brain_coral_block": { - "states": [ - { - "default": true, - "id": 12650 - } - ] - }, - "minecraft:brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12686, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12687, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12742, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12743, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12744, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12745, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12746, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12747, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12748, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12749, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brewing_stand": { - "properties": { - "has_bottle_0": [ - "true", - "false" - ], - "has_bottle_1": [ - "true", - "false" - ], - "has_bottle_2": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7386, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "true" - } - }, - { - "id": 7387, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "false" - } - }, - { - "id": 7388, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "true" - } - }, - { - "id": 7389, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "false" - } - }, - { - "id": 7390, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "true" - } - }, - { - "id": 7391, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "false" - } - }, - { - "id": 7392, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "true" - } - }, - { - "default": true, - "id": 7393, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "false" - } - } - ] - }, - "minecraft:brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11113, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11114, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11115, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11116, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11117, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11118, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7025, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7026, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7027, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7028, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7029, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7030, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7031, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7032, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7033, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7034, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7035, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7036, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7037, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7038, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7039, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7040, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7041, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7042, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7043, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7044, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7045, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7046, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7047, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7048, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7049, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7050, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7051, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7052, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7053, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7054, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7055, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7056, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7057, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7058, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7059, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7060, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7061, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7062, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7063, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7064, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7065, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7066, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7067, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7068, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7069, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7070, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7071, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7072, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7073, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7074, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7075, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7076, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7077, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7078, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7079, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7080, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7081, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7082, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7083, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7084, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7085, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7086, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7087, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7088, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7089, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7090, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7091, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7092, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7093, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7094, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7095, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7096, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7097, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7098, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7099, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7100, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7101, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7102, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7103, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7104, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14001, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14002, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14003, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14004, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14005, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14006, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14007, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14008, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14009, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14010, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14011, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14012, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14013, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14014, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14015, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14016, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14017, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14018, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14019, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14020, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14021, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14022, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14023, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14024, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14025, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14026, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14027, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14028, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14029, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14030, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14031, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14032, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14033, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14034, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14035, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14036, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14037, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14038, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14039, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14040, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14041, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14042, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14043, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14044, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14045, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14046, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14047, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14048, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14049, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14050, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14051, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14052, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14053, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14054, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14055, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14056, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14057, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14058, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14059, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14060, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14061, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14062, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14063, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14064, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14065, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14066, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14067, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14068, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14069, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14070, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14071, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14072, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14073, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14074, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14075, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14076, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14077, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14078, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14079, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14080, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14081, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14082, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14083, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14084, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14085, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14086, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14087, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14088, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14089, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14090, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14091, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14092, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14093, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14094, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14095, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14096, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14097, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14098, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14099, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14100, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14101, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14102, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14103, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14104, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14105, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14106, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14107, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14108, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14109, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14110, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14111, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14112, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14113, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14114, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14115, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14116, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14117, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14118, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14119, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14120, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14121, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14122, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14123, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14124, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14125, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14126, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14127, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14128, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14129, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14130, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14131, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14132, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14133, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14134, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14135, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14136, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14137, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14138, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14139, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14140, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14141, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14142, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14143, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14144, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14145, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14146, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14147, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14148, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14149, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14150, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14151, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14152, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14153, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14154, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14155, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14156, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14157, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14158, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14159, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14160, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14161, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14162, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14163, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14164, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14165, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14166, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14167, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14168, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14169, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14170, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14171, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14172, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14173, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14174, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14175, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14176, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14177, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14178, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14179, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14180, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14181, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14182, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14183, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14184, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14185, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14186, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14187, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14188, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14189, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14190, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14191, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14192, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14193, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14194, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14195, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14196, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14197, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14198, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14199, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14200, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14201, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14202, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14203, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14204, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14205, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14206, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14207, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14208, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14209, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14210, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14211, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14212, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14213, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14214, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14215, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14216, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14217, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14218, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14219, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14220, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14221, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14222, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14223, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14224, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14225, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14226, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14227, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14228, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14229, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14230, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14231, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14232, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14233, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14234, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14235, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14236, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14237, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14238, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14239, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14240, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14241, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14242, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14243, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14244, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14245, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14246, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14247, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14248, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14249, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14250, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14251, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14252, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14253, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14254, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14255, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14256, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14257, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14258, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14259, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14260, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14261, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14262, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14263, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14264, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14265, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14266, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14267, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14268, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14269, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14270, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14271, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14272, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14273, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14274, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14275, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14276, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14277, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14278, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14279, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14280, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14281, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14282, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14283, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14284, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14285, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14286, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14287, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14288, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14289, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14290, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14291, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14292, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14293, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14294, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14295, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14296, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14297, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14298, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14299, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14300, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14301, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14302, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14303, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14304, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14305, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14306, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14307, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14308, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14309, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14310, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14311, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14312, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14313, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14314, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14315, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14316, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14317, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14318, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14319, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14320, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14321, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14322, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14323, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14324, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:bricks": { - "states": [ - { - "default": true, - "id": 2089 - } - ] - }, - "minecraft:brown_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10806, - "properties": { - "rotation": "0" - } - }, - { - "id": 10807, - "properties": { - "rotation": "1" - } - }, - { - "id": 10808, - "properties": { - "rotation": "2" - } - }, - { - "id": 10809, - "properties": { - "rotation": "3" - } - }, - { - "id": 10810, - "properties": { - "rotation": "4" - } - }, - { - "id": 10811, - "properties": { - "rotation": "5" - } - }, - { - "id": 10812, - "properties": { - "rotation": "6" - } - }, - { - "id": 10813, - "properties": { - "rotation": "7" - } - }, - { - "id": 10814, - "properties": { - "rotation": "8" - } - }, - { - "id": 10815, - "properties": { - "rotation": "9" - } - }, - { - "id": 10816, - "properties": { - "rotation": "10" - } - }, - { - "id": 10817, - "properties": { - "rotation": "11" - } - }, - { - "id": 10818, - "properties": { - "rotation": "12" - } - }, - { - "id": 10819, - "properties": { - "rotation": "13" - } - }, - { - "id": 10820, - "properties": { - "rotation": "14" - } - }, - { - "id": 10821, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:brown_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1876, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1877, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1878, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1879, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1880, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1881, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1882, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1883, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1884, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1885, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1886, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1887, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1888, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1889, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1890, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1891, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:brown_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20774, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20775, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20776, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20777, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20778, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20779, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20780, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20781, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20782, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20783, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20784, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20785, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20786, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20787, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20788, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20789, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brown_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20864, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20865, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:brown_carpet": { - "states": [ - { - "default": true, - "id": 10595 - } - ] - }, - "minecraft:brown_concrete": { - "states": [ - { - "default": true, - "id": 12584 - } - ] - }, - "minecraft:brown_concrete_powder": { - "states": [ - { - "default": true, - "id": 12600 - } - ] - }, - "minecraft:brown_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12556, - "properties": { - "facing": "north" - } - }, - { - "id": 12557, - "properties": { - "facing": "south" - } - }, - { - "id": 12558, - "properties": { - "facing": "west" - } - }, - { - "id": 12559, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:brown_mushroom": { - "states": [ - { - "default": true, - "id": 2085 - } - ] - }, - "minecraft:brown_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 6546, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6547, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6548, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6549, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6550, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6551, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6552, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6553, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6554, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6555, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6556, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6557, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6558, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6559, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6560, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6561, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6562, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6563, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6564, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6565, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6566, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6567, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6568, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6569, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6570, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6571, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6572, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6573, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6574, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6575, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6576, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6577, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6578, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6579, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6580, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6581, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6582, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6583, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6584, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6585, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6586, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6587, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6588, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6589, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6590, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6591, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6592, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6593, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6594, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6595, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6596, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6597, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6598, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6599, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6600, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6601, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6602, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6603, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6604, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6605, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6606, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6607, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6608, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6609, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:brown_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12484, - "properties": { - "facing": "north" - } - }, - { - "id": 12485, - "properties": { - "facing": "east" - } - }, - { - "id": 12486, - "properties": { - "facing": "south" - } - }, - { - "id": 12487, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12488, - "properties": { - "facing": "up" - } - }, - { - "id": 12489, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:brown_stained_glass": { - "states": [ - { - "default": true, - "id": 5954 - } - ] - }, - "minecraft:brown_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9612, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9613, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9614, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9615, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9616, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9617, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9618, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9619, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9620, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9621, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9622, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9623, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9624, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9625, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9626, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9627, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9628, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9629, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9630, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9631, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9632, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9633, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9634, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9635, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9636, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9637, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9638, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9639, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9640, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9641, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9642, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9643, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:brown_terracotta": { - "states": [ - { - "default": true, - "id": 9224 - } - ] - }, - "minecraft:brown_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10918, - "properties": { - "facing": "north" - } - }, - { - "id": 10919, - "properties": { - "facing": "south" - } - }, - { - "id": 10920, - "properties": { - "facing": "west" - } - }, - { - "id": 10921, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:brown_wool": { - "states": [ - { - "default": true, - "id": 2055 - } - ] - }, - "minecraft:bubble_column": { - "properties": { - "drag": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12801, - "properties": { - "drag": "true" - } - }, - { - "id": 12802, - "properties": { - "drag": "false" - } - } - ] - }, - "minecraft:bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12668, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12669, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:bubble_coral_block": { - "states": [ - { - "default": true, - "id": 12651 - } - ] - }, - "minecraft:bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12688, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12689, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12750, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12751, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12752, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12753, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12754, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12755, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12756, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12757, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:budding_amethyst": { - "states": [ - { - "default": true, - "id": 20873 - } - ] - }, - "minecraft:cactus": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 5778, - "properties": { - "age": "0" - } - }, - { - "id": 5779, - "properties": { - "age": "1" - } - }, - { - "id": 5780, - "properties": { - "age": "2" - } - }, - { - "id": 5781, - "properties": { - "age": "3" - } - }, - { - "id": 5782, - "properties": { - "age": "4" - } - }, - { - "id": 5783, - "properties": { - "age": "5" - } - }, - { - "id": 5784, - "properties": { - "age": "6" - } - }, - { - "id": 5785, - "properties": { - "age": "7" - } - }, - { - "id": 5786, - "properties": { - "age": "8" - } - }, - { - "id": 5787, - "properties": { - "age": "9" - } - }, - { - "id": 5788, - "properties": { - "age": "10" - } - }, - { - "id": 5789, - "properties": { - "age": "11" - } - }, - { - "id": 5790, - "properties": { - "age": "12" - } - }, - { - "id": 5791, - "properties": { - "age": "13" - } - }, - { - "id": 5792, - "properties": { - "age": "14" - } - }, - { - "id": 5793, - "properties": { - "age": "15" - } - } - ] - }, - "minecraft:cake": { - "properties": { - "bites": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - }, - "states": [ - { - "default": true, - "id": 5871, - "properties": { - "bites": "0" - } - }, - { - "id": 5872, - "properties": { - "bites": "1" - } - }, - { - "id": 5873, - "properties": { - "bites": "2" - } - }, - { - "id": 5874, - "properties": { - "bites": "3" - } - }, - { - "id": 5875, - "properties": { - "bites": "4" - } - }, - { - "id": 5876, - "properties": { - "bites": "5" - } - }, - { - "id": 5877, - "properties": { - "bites": "6" - } - } - ] - }, - "minecraft:calcite": { - "states": [ - { - "default": true, - "id": 20923 - } - ] - }, - "minecraft:campfire": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ], - "signal_fire": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18352, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18353, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18354, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18355, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18356, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18357, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18358, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18359, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18360, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18361, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18362, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18363, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18364, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18365, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18366, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18367, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18368, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18369, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18370, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18371, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18372, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18373, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18374, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18375, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18376, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18377, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18378, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18379, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18380, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18381, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18382, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18383, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20566, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20567, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20568, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20569, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20570, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20571, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20572, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20573, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20574, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20575, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20576, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20577, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20578, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20579, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20580, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20581, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20838, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20839, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:carrots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 8591, - "properties": { - "age": "0" - } - }, - { - "id": 8592, - "properties": { - "age": "1" - } - }, - { - "id": 8593, - "properties": { - "age": "2" - } - }, - { - "id": 8594, - "properties": { - "age": "3" - } - }, - { - "id": 8595, - "properties": { - "age": "4" - } - }, - { - "id": 8596, - "properties": { - "age": "5" - } - }, - { - "id": 8597, - "properties": { - "age": "6" - } - }, - { - "id": 8598, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:cartography_table": { - "states": [ - { - "default": true, - "id": 18277 - } - ] - }, - "minecraft:carved_pumpkin": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 5863, - "properties": { - "facing": "north" - } - }, - { - "id": 5864, - "properties": { - "facing": "south" - } - }, - { - "id": 5865, - "properties": { - "facing": "west" - } - }, - { - "id": 5866, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cauldron": { - "states": [ - { - "default": true, - "id": 7394 - } - ] - }, - "minecraft:cave_air": { - "states": [ - { - "default": true, - "id": 12800 - } - ] - }, - "minecraft:cave_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ], - "berries": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21912, - "properties": { - "age": "0", - "berries": "true" - } - }, - { - "default": true, - "id": 21913, - "properties": { - "age": "0", - "berries": "false" - } - }, - { - "id": 21914, - "properties": { - "age": "1", - "berries": "true" - } - }, - { - "id": 21915, - "properties": { - "age": "1", - "berries": "false" - } - }, - { - "id": 21916, - "properties": { - "age": "2", - "berries": "true" - } - }, - { - "id": 21917, - "properties": { - "age": "2", - "berries": "false" - } - }, - { - "id": 21918, - "properties": { - "age": "3", - "berries": "true" - } - }, - { - "id": 21919, - "properties": { - "age": "3", - "berries": "false" - } - }, - { - "id": 21920, - "properties": { - "age": "4", - "berries": "true" - } - }, - { - "id": 21921, - "properties": { - "age": "4", - "berries": "false" - } - }, - { - "id": 21922, - "properties": { - "age": "5", - "berries": "true" - } - }, - { - "id": 21923, - "properties": { - "age": "5", - "berries": "false" - } - }, - { - "id": 21924, - "properties": { - "age": "6", - "berries": "true" - } - }, - { - "id": 21925, - "properties": { - "age": "6", - "berries": "false" - } - }, - { - "id": 21926, - "properties": { - "age": "7", - "berries": "true" - } - }, - { - "id": 21927, - "properties": { - "age": "7", - "berries": "false" - } - }, - { - "id": 21928, - "properties": { - "age": "8", - "berries": "true" - } - }, - { - "id": 21929, - "properties": { - "age": "8", - "berries": "false" - } - }, - { - "id": 21930, - "properties": { - "age": "9", - "berries": "true" - } - }, - { - "id": 21931, - "properties": { - "age": "9", - "berries": "false" - } - }, - { - "id": 21932, - "properties": { - "age": "10", - "berries": "true" - } - }, - { - "id": 21933, - "properties": { - "age": "10", - "berries": "false" - } - }, - { - "id": 21934, - "properties": { - "age": "11", - "berries": "true" - } - }, - { - "id": 21935, - "properties": { - "age": "11", - "berries": "false" - } - }, - { - "id": 21936, - "properties": { - "age": "12", - "berries": "true" - } - }, - { - "id": 21937, - "properties": { - "age": "12", - "berries": "false" - } - }, - { - "id": 21938, - "properties": { - "age": "13", - "berries": "true" - } - }, - { - "id": 21939, - "properties": { - "age": "13", - "berries": "false" - } - }, - { - "id": 21940, - "properties": { - "age": "14", - "berries": "true" - } - }, - { - "id": 21941, - "properties": { - "age": "14", - "berries": "false" - } - }, - { - "id": 21942, - "properties": { - "age": "15", - "berries": "true" - } - }, - { - "id": 21943, - "properties": { - "age": "15", - "berries": "false" - } - }, - { - "id": 21944, - "properties": { - "age": "16", - "berries": "true" - } - }, - { - "id": 21945, - "properties": { - "age": "16", - "berries": "false" - } - }, - { - "id": 21946, - "properties": { - "age": "17", - "berries": "true" - } - }, - { - "id": 21947, - "properties": { - "age": "17", - "berries": "false" - } - }, - { - "id": 21948, - "properties": { - "age": "18", - "berries": "true" - } - }, - { - "id": 21949, - "properties": { - "age": "18", - "berries": "false" - } - }, - { - "id": 21950, - "properties": { - "age": "19", - "berries": "true" - } - }, - { - "id": 21951, - "properties": { - "age": "19", - "berries": "false" - } - }, - { - "id": 21952, - "properties": { - "age": "20", - "berries": "true" - } - }, - { - "id": 21953, - "properties": { - "age": "20", - "berries": "false" - } - }, - { - "id": 21954, - "properties": { - "age": "21", - "berries": "true" - } - }, - { - "id": 21955, - "properties": { - "age": "21", - "berries": "false" - } - }, - { - "id": 21956, - "properties": { - "age": "22", - "berries": "true" - } - }, - { - "id": 21957, - "properties": { - "age": "22", - "berries": "false" - } - }, - { - "id": 21958, - "properties": { - "age": "23", - "berries": "true" - } - }, - { - "id": 21959, - "properties": { - "age": "23", - "berries": "false" - } - }, - { - "id": 21960, - "properties": { - "age": "24", - "berries": "true" - } - }, - { - "id": 21961, - "properties": { - "age": "24", - "berries": "false" - } - }, - { - "id": 21962, - "properties": { - "age": "25", - "berries": "true" - } - }, - { - "id": 21963, - "properties": { - "age": "25", - "berries": "false" - } - } - ] - }, - "minecraft:cave_vines_plant": { - "properties": { - "berries": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21964, - "properties": { - "berries": "true" - } - }, - { - "default": true, - "id": 21965, - "properties": { - "berries": "false" - } - } - ] - }, - "minecraft:chain": { - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6770, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 6771, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 6772, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6773, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 6774, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 6775, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:chain_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12371, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 12372, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 12373, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 12374, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 12375, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 12376, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 12377, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 12378, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 12379, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 12380, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 12381, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 12382, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:cherry_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8727, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8728, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8729, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8730, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8731, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8732, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8733, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8734, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8735, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8736, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8737, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8738, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8739, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8740, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8741, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8742, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8743, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8744, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8745, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8746, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8747, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8748, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8749, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8750, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11933, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11934, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11935, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11936, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11937, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11938, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11939, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11940, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11941, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11942, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11943, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11944, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11945, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11946, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11947, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11948, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11949, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11950, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11951, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11952, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11953, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11954, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11955, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11956, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11957, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11958, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11959, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11960, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11961, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11962, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11963, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11964, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11965, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11966, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11967, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11968, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11969, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11970, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11971, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11972, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11973, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11974, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11975, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11976, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11977, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11978, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11979, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11980, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11981, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11982, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11983, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11984, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11985, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11986, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11987, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11988, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11989, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11990, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11991, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11992, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11993, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11994, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11995, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11996, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11549, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11550, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11551, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11552, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11553, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11554, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11555, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11556, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11557, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11558, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11559, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11560, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11561, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11562, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11563, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11564, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11565, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11566, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11567, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11568, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11569, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11570, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11571, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11572, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11573, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11574, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11575, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11576, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11577, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11578, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11579, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11580, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:cherry_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11293, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11294, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11295, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11296, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11297, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11298, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11299, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11300, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11301, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11302, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11303, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11304, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11305, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11306, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11307, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11308, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11309, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11310, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11311, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11312, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11313, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11314, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11315, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11316, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11317, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11318, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11319, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11320, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11321, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11322, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11323, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11324, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5086, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5087, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5088, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5089, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5090, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5091, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5092, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5093, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5094, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5095, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5096, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5097, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5098, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5099, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5100, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5101, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5102, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5103, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5104, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5105, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5106, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5107, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5108, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5109, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5110, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5111, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5112, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5113, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5114, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5115, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5116, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5117, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5118, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5119, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5120, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5121, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5122, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5123, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5124, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5125, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5126, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5127, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5128, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5129, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5130, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5131, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5132, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5133, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5134, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5135, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5136, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5137, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5138, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5139, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5140, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5141, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5142, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5143, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5144, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5145, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5146, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5147, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5148, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5149, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 373, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 374, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 375, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 376, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 377, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 378, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 379, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 380, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 381, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 382, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 383, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 384, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 385, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 386, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 387, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 388, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 389, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 390, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 391, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 392, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 393, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 394, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 395, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 396, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 397, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 398, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 399, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 400, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 141, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 142, - "properties": { - "axis": "y" - } - }, - { - "id": 143, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:cherry_planks": { - "states": [ - { - "default": true, - "id": 20 - } - ] - }, - "minecraft:cherry_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5722, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5723, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:cherry_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 35, - "properties": { - "stage": "0" - } - }, - { - "id": 36, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:cherry_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4426, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4427, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4428, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4429, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4430, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4431, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4432, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4433, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4434, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4435, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4436, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4437, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4438, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4439, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4440, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4441, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4442, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4443, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4444, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4445, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4446, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4447, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4448, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4449, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4450, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4451, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4452, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4453, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4454, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4455, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4456, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4457, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11047, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11048, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11049, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11050, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11051, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11052, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9820, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9821, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9822, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9823, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9824, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9825, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9826, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9827, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9828, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9829, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9830, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9831, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9832, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9833, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9834, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9835, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9836, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9837, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9838, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9839, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9840, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9841, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9842, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9843, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9844, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9845, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9846, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9847, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9848, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9849, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9850, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9851, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9852, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9853, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9854, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9855, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9856, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9857, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9858, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9859, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9860, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9861, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9862, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9863, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9864, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9865, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9866, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9867, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9868, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9869, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9870, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9871, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9872, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9873, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9874, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9875, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9876, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9877, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9878, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9879, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9880, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9881, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9882, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9883, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9884, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9885, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9886, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9887, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9888, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9889, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9890, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9891, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9892, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9893, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9894, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9895, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9896, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9897, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9898, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9899, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6278, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6279, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6280, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6281, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6282, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6283, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6284, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6285, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6286, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6287, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6288, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6289, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6290, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6291, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6292, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6293, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6294, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6295, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6296, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6297, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6298, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6299, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6300, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6301, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6302, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6303, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6304, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6305, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6306, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6307, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6308, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6309, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6310, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6311, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6312, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6313, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6314, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6315, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6316, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6317, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6318, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6319, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6320, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6321, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6322, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6323, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6324, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6325, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6326, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6327, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6328, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6329, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6330, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6331, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6332, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6333, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6334, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6335, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6336, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6337, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6338, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6339, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6340, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6341, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5566, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5567, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5568, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5569, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5570, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5571, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5572, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5573, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4790, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4791, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4792, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4793, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4794, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4795, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4796, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4797, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 200, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 201, - "properties": { - "axis": "y" - } - }, - { - "id": 202, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:chest": { - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2950, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2951, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2952, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 2953, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2954, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 2955, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2956, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2957, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2958, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2959, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2960, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2961, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2962, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2963, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2964, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2965, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2966, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2967, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2968, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2969, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 2970, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2971, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 2972, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2973, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:chipped_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8967, - "properties": { - "facing": "north" - } - }, - { - "id": 8968, - "properties": { - "facing": "south" - } - }, - { - "id": 8969, - "properties": { - "facing": "west" - } - }, - { - "id": 8970, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:chiseled_bookshelf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "slot_0_occupied": [ - "true", - "false" - ], - "slot_1_occupied": [ - "true", - "false" - ], - "slot_2_occupied": [ - "true", - "false" - ], - "slot_3_occupied": [ - "true", - "false" - ], - "slot_4_occupied": [ - "true", - "false" - ], - "slot_5_occupied": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2093, - "properties": { - "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" - } - }, - { - "id": 2094, - "properties": { - "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" - } - }, - { - "id": 2095, - "properties": { - "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" - } - }, - { - "id": 2096, - "properties": { - "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" - } - }, - { - "id": 2097, - "properties": { - "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" - } - }, - { - "id": 2098, - "properties": { - "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" - } - }, - { - "id": 2099, - "properties": { - "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" - } - }, - { - "id": 2100, - "properties": { - "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" - } - }, - { - "id": 2101, - "properties": { - "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" - } - }, - { - "id": 2102, - "properties": { - "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" - } - }, - { - "id": 2103, - "properties": { - "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" - } - }, - { - "id": 2104, - "properties": { - "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" - } - }, - { - "id": 2105, - "properties": { - "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" - } - }, - { - "id": 2106, - "properties": { - "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" - } - }, - { - "id": 2107, - "properties": { - "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" - } - }, - { - "id": 2108, - "properties": { - "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" - } - }, - { - "id": 2109, - "properties": { - "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" - } - }, - { - "id": 2110, - "properties": { - "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" - } - }, - { - "id": 2111, - "properties": { - "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" - } - }, - { - "id": 2112, - "properties": { - "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" - } - }, - { - "id": 2113, - "properties": { - "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" - } - }, - { - "id": 2114, - "properties": { - "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" - } - }, - { - "id": 2115, - "properties": { - "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" - } - }, - { - "id": 2116, - "properties": { - "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" - } - }, - { - "id": 2117, - "properties": { - "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" - } - }, - { - "id": 2118, - "properties": { - "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" - } - }, - { - "id": 2119, - "properties": { - "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" - } - }, - { - "id": 2120, - "properties": { - "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" - } - }, - { - "id": 2121, - "properties": { - "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" - } - }, - { - "id": 2122, - "properties": { - "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" - } - }, - { - "id": 2123, - "properties": { - "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" - } - }, - { - "id": 2124, - "properties": { - "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" - } - }, - { - "id": 2125, - "properties": { - "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" - } - }, - { - "id": 2126, - "properties": { - "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" - } - }, - { - "id": 2127, - "properties": { - "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" - } - }, - { - "id": 2128, - "properties": { - "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" - } - }, - { - "id": 2129, - "properties": { - "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" - } - }, - { - "id": 2130, - "properties": { - "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" - } - }, - { - "id": 2131, - "properties": { - "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" - } - }, - { - "id": 2132, - "properties": { - "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" - } - }, - { - "id": 2133, - "properties": { - "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" - } - }, - { - "id": 2134, - "properties": { - "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" - } - }, - { - "id": 2135, - "properties": { - "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" - } - }, - { - "id": 2136, - "properties": { - "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" - } - }, - { - "id": 2137, - "properties": { - "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" - } - }, - { - "id": 2138, - "properties": { - "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" - } - }, - { - "id": 2139, - "properties": { - "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" - } - }, - { - "id": 2140, - "properties": { - "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" - } - }, - { - "id": 2141, - "properties": { - "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" - } - }, - { - "id": 2142, - "properties": { - "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" - } - }, - { - "id": 2143, - "properties": { - "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" - } - }, - { - "id": 2144, - "properties": { - "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" - } - }, - { - "id": 2145, - "properties": { - "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" - } - }, - { - "id": 2146, - "properties": { - "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" - } - }, - { - "id": 2147, - "properties": { - "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" - } - }, - { - "id": 2148, - "properties": { - "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" - } - }, - { - "id": 2149, - "properties": { - "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" - } - }, - { - "id": 2150, - "properties": { - "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" - } - }, - { - "id": 2151, - "properties": { - "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" - } - }, - { - "id": 2152, - "properties": { - "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" - } - }, - { - "id": 2153, - "properties": { - "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" - } - }, - { - "id": 2154, - "properties": { - "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" - } - }, - { - "id": 2155, - "properties": { - "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" - } - }, - { - "default": true, - "id": 2156, - "properties": { - "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" - } - }, - { - "id": 2157, - "properties": { - "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" - } - }, - { - "id": 2158, - "properties": { - "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" - } - }, - { - "id": 2159, - "properties": { - "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" - } - }, - { - "id": 2160, - "properties": { - "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" - } - }, - { - "id": 2161, - "properties": { - "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" - } - }, - { - "id": 2162, - "properties": { - "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" - } - }, - { - "id": 2163, - "properties": { - "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" - } - }, - { - "id": 2164, - "properties": { - "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" - } - }, - { - "id": 2165, - "properties": { - "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" - } - }, - { - "id": 2166, - "properties": { - "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" - } - }, - { - "id": 2167, - "properties": { - "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" - } - }, - { - "id": 2168, - "properties": { - "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" - } - }, - { - "id": 2169, - "properties": { - "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" - } - }, - { - "id": 2170, - "properties": { - "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" - } - }, - { - "id": 2171, - "properties": { - "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" - } - }, - { - "id": 2172, - "properties": { - "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" - } - }, - { - "id": 2173, - "properties": { - "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" - } - }, - { - "id": 2174, - "properties": { - "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" - } - }, - { - "id": 2175, - "properties": { - "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" - } - }, - { - "id": 2176, - "properties": { - "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" - } - }, - { - "id": 2177, - "properties": { - "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" - } - }, - { - "id": 2178, - "properties": { - "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" - } - }, - { - "id": 2179, - "properties": { - "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" - } - }, - { - "id": 2180, - "properties": { - "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" - } - }, - { - "id": 2181, - "properties": { - "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" - } - }, - { - "id": 2182, - "properties": { - "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" - } - }, - { - "id": 2183, - "properties": { - "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" - } - }, - { - "id": 2184, - "properties": { - "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" - } - }, - { - "id": 2185, - "properties": { - "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" - } - }, - { - "id": 2186, - "properties": { - "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" - } - }, - { - "id": 2187, - "properties": { - "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" - } - }, - { - "id": 2188, - "properties": { - "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" - } - }, - { - "id": 2189, - "properties": { - "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" - } - }, - { - "id": 2190, - "properties": { - "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" - } - }, - { - "id": 2191, - "properties": { - "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" - } - }, - { - "id": 2192, - "properties": { - "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" - } - }, - { - "id": 2193, - "properties": { - "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" - } - }, - { - "id": 2194, - "properties": { - "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" - } - }, - { - "id": 2195, - "properties": { - "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" - } - }, - { - "id": 2196, - "properties": { - "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" - } - }, - { - "id": 2197, - "properties": { - "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" - } - }, - { - "id": 2198, - "properties": { - "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" - } - }, - { - "id": 2199, - "properties": { - "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" - } - }, - { - "id": 2200, - "properties": { - "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" - } - }, - { - "id": 2201, - "properties": { - "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" - } - }, - { - "id": 2202, - "properties": { - "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" - } - }, - { - "id": 2203, - "properties": { - "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" - } - }, - { - "id": 2204, - "properties": { - "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" - } - }, - { - "id": 2205, - "properties": { - "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" - } - }, - { - "id": 2206, - "properties": { - "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" - } - }, - { - "id": 2207, - "properties": { - "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" - } - }, - { - "id": 2208, - "properties": { - "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" - } - }, - { - "id": 2209, - "properties": { - "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" - } - }, - { - "id": 2210, - "properties": { - "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" - } - }, - { - "id": 2211, - "properties": { - "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" - } - }, - { - "id": 2212, - "properties": { - "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" - } - }, - { - "id": 2213, - "properties": { - "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" - } - }, - { - "id": 2214, - "properties": { - "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" - } - }, - { - "id": 2215, - "properties": { - "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" - } - }, - { - "id": 2216, - "properties": { - "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" - } - }, - { - "id": 2217, - "properties": { - "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" - } - }, - { - "id": 2218, - "properties": { - "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" - } - }, - { - "id": 2219, - "properties": { - "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" - } - }, - { - "id": 2220, - "properties": { - "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" - } - }, - { - "id": 2221, - "properties": { - "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" - } - }, - { - "id": 2222, - "properties": { - "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" - } - }, - { - "id": 2223, - "properties": { - "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" - } - }, - { - "id": 2224, - "properties": { - "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" - } - }, - { - "id": 2225, - "properties": { - "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" - } - }, - { - "id": 2226, - "properties": { - "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" - } - }, - { - "id": 2227, - "properties": { - "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" - } - }, - { - "id": 2228, - "properties": { - "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" - } - }, - { - "id": 2229, - "properties": { - "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" - } - }, - { - "id": 2230, - "properties": { - "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" - } - }, - { - "id": 2231, - "properties": { - "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" - } - }, - { - "id": 2232, - "properties": { - "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" - } - }, - { - "id": 2233, - "properties": { - "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" - } - }, - { - "id": 2234, - "properties": { - "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" - } - }, - { - "id": 2235, - "properties": { - "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" - } - }, - { - "id": 2236, - "properties": { - "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" - } - }, - { - "id": 2237, - "properties": { - "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" - } - }, - { - "id": 2238, - "properties": { - "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" - } - }, - { - "id": 2239, - "properties": { - "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" - } - }, - { - "id": 2240, - "properties": { - "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" - } - }, - { - "id": 2241, - "properties": { - "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" - } - }, - { - "id": 2242, - "properties": { - "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" - } - }, - { - "id": 2243, - "properties": { - "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" - } - }, - { - "id": 2244, - "properties": { - "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" - } - }, - { - "id": 2245, - "properties": { - "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" - } - }, - { - "id": 2246, - "properties": { - "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" - } - }, - { - "id": 2247, - "properties": { - "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" - } - }, - { - "id": 2248, - "properties": { - "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" - } - }, - { - "id": 2249, - "properties": { - "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" - } - }, - { - "id": 2250, - "properties": { - "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" - } - }, - { - "id": 2251, - "properties": { - "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" - } - }, - { - "id": 2252, - "properties": { - "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" - } - }, - { - "id": 2253, - "properties": { - "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" - } - }, - { - "id": 2254, - "properties": { - "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" - } - }, - { - "id": 2255, - "properties": { - "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" - } - }, - { - "id": 2256, - "properties": { - "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" - } - }, - { - "id": 2257, - "properties": { - "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" - } - }, - { - "id": 2258, - "properties": { - "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" - } - }, - { - "id": 2259, - "properties": { - "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" - } - }, - { - "id": 2260, - "properties": { - "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" - } - }, - { - "id": 2261, - "properties": { - "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" - } - }, - { - "id": 2262, - "properties": { - "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" - } - }, - { - "id": 2263, - "properties": { - "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" - } - }, - { - "id": 2264, - "properties": { - "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" - } - }, - { - "id": 2265, - "properties": { - "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" - } - }, - { - "id": 2266, - "properties": { - "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" - } - }, - { - "id": 2267, - "properties": { - "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" - } - }, - { - "id": 2268, - "properties": { - "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" - } - }, - { - "id": 2269, - "properties": { - "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" - } - }, - { - "id": 2270, - "properties": { - "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" - } - }, - { - "id": 2271, - "properties": { - "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" - } - }, - { - "id": 2272, - "properties": { - "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" - } - }, - { - "id": 2273, - "properties": { - "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" - } - }, - { - "id": 2274, - "properties": { - "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" - } - }, - { - "id": 2275, - "properties": { - "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" - } - }, - { - "id": 2276, - "properties": { - "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" - } - }, - { - "id": 2277, - "properties": { - "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" - } - }, - { - "id": 2278, - "properties": { - "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" - } - }, - { - "id": 2279, - "properties": { - "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" - } - }, - { - "id": 2280, - "properties": { - "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" - } - }, - { - "id": 2281, - "properties": { - "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" - } - }, - { - "id": 2282, - "properties": { - "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" - } - }, - { - "id": 2283, - "properties": { - "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" - } - }, - { - "id": 2284, - "properties": { - "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" - } - }, - { - "id": 2285, - "properties": { - "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" - } - }, - { - "id": 2286, - "properties": { - "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" - } - }, - { - "id": 2287, - "properties": { - "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" - } - }, - { - "id": 2288, - "properties": { - "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" - } - }, - { - "id": 2289, - "properties": { - "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" - } - }, - { - "id": 2290, - "properties": { - "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" - } - }, - { - "id": 2291, - "properties": { - "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" - } - }, - { - "id": 2292, - "properties": { - "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" - } - }, - { - "id": 2293, - "properties": { - "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" - } - }, - { - "id": 2294, - "properties": { - "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" - } - }, - { - "id": 2295, - "properties": { - "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" - } - }, - { - "id": 2296, - "properties": { - "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" - } - }, - { - "id": 2297, - "properties": { - "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" - } - }, - { - "id": 2298, - "properties": { - "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" - } - }, - { - "id": 2299, - "properties": { - "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" - } - }, - { - "id": 2300, - "properties": { - "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" - } - }, - { - "id": 2301, - "properties": { - "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" - } - }, - { - "id": 2302, - "properties": { - "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" - } - }, - { - "id": 2303, - "properties": { - "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" - } - }, - { - "id": 2304, - "properties": { - "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" - } - }, - { - "id": 2305, - "properties": { - "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" - } - }, - { - "id": 2306, - "properties": { - "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" - } - }, - { - "id": 2307, - "properties": { - "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" - } - }, - { - "id": 2308, - "properties": { - "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" - } - }, - { - "id": 2309, - "properties": { - "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" - } - }, - { - "id": 2310, - "properties": { - "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" - } - }, - { - "id": 2311, - "properties": { - "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" - } - }, - { - "id": 2312, - "properties": { - "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" - } - }, - { - "id": 2313, - "properties": { - "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" - } - }, - { - "id": 2314, - "properties": { - "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" - } - }, - { - "id": 2315, - "properties": { - "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" - } - }, - { - "id": 2316, - "properties": { - "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" - } - }, - { - "id": 2317, - "properties": { - "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" - } - }, - { - "id": 2318, - "properties": { - "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" - } - }, - { - "id": 2319, - "properties": { - "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" - } - }, - { - "id": 2320, - "properties": { - "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" - } - }, - { - "id": 2321, - "properties": { - "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" - } - }, - { - "id": 2322, - "properties": { - "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" - } - }, - { - "id": 2323, - "properties": { - "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" - } - }, - { - "id": 2324, - "properties": { - "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" - } - }, - { - "id": 2325, - "properties": { - "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" - } - }, - { - "id": 2326, - "properties": { - "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" - } - }, - { - "id": 2327, - "properties": { - "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" - } - }, - { - "id": 2328, - "properties": { - "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" - } - }, - { - "id": 2329, - "properties": { - "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" - } - }, - { - "id": 2330, - "properties": { - "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" - } - }, - { - "id": 2331, - "properties": { - "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" - } - }, - { - "id": 2332, - "properties": { - "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" - } - }, - { - "id": 2333, - "properties": { - "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" - } - }, - { - "id": 2334, - "properties": { - "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" - } - }, - { - "id": 2335, - "properties": { - "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" - } - }, - { - "id": 2336, - "properties": { - "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" - } - }, - { - "id": 2337, - "properties": { - "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" - } - }, - { - "id": 2338, - "properties": { - "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" - } - }, - { - "id": 2339, - "properties": { - "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" - } - }, - { - "id": 2340, - "properties": { - "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" - } - }, - { - "id": 2341, - "properties": { - "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" - } - }, - { - "id": 2342, - "properties": { - "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" - } - }, - { - "id": 2343, - "properties": { - "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" - } - }, - { - "id": 2344, - "properties": { - "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" - } - }, - { - "id": 2345, - "properties": { - "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" - } - }, - { - "id": 2346, - "properties": { - "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" - } - }, - { - "id": 2347, - "properties": { - "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" - } - }, - { - "id": 2348, - "properties": { - "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_deepslate": { - "states": [ - { - "default": true, - "id": 23694 - } - ] - }, - "minecraft:chiseled_nether_bricks": { - "states": [ - { - "default": true, - "id": 20563 - } - ] - }, - "minecraft:chiseled_polished_blackstone": { - "states": [ - { - "default": true, - "id": 19715 - } - ] - }, - "minecraft:chiseled_quartz_block": { - "states": [ - { - "default": true, - "id": 9092 - } - ] - }, - "minecraft:chiseled_red_sandstone": { - "states": [ - { - "default": true, - "id": 10935 - } - ] - }, - "minecraft:chiseled_sandstone": { - "states": [ - { - "default": true, - "id": 532 - } - ] - }, - "minecraft:chiseled_stone_bricks": { - "states": [ - { - "default": true, - "id": 6537 - } - ] - }, - "minecraft:chorus_flower": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 12259, - "properties": { - "age": "0" - } - }, - { - "id": 12260, - "properties": { - "age": "1" - } - }, - { - "id": 12261, - "properties": { - "age": "2" - } - }, - { - "id": 12262, - "properties": { - "age": "3" - } - }, - { - "id": 12263, - "properties": { - "age": "4" - } - }, - { - "id": 12264, - "properties": { - "age": "5" - } - } - ] - }, - "minecraft:chorus_plant": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12195, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12196, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12197, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12198, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12199, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12200, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12201, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12202, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12203, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12204, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12205, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12206, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12207, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12208, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12209, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12210, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12211, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12212, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12213, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12214, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12215, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12216, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12217, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12218, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12219, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12220, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12221, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12222, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12223, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12224, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12225, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12226, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12227, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12228, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12229, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12230, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12231, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12232, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12233, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12234, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12235, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12236, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12237, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12238, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12239, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12240, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12241, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12242, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12243, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12244, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12245, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12246, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12247, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12248, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12249, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12250, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12251, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12252, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12253, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12254, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12255, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12256, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12257, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "default": true, - "id": 12258, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:clay": { - "states": [ - { - "default": true, - "id": 5794 - } - ] - }, - "minecraft:coal_block": { - "states": [ - { - "default": true, - "id": 10600 - } - ] - }, - "minecraft:coal_ore": { - "states": [ - { - "default": true, - "id": 123 - } - ] - }, - "minecraft:coarse_dirt": { - "states": [ - { - "default": true, - "id": 11 - } - ] - }, - "minecraft:cobbled_deepslate": { - "states": [ - { - "default": true, - "id": 22050 - } - ] - }, - "minecraft:cobbled_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22131, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22132, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22133, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22134, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22135, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22136, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobbled_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22051, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22052, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22053, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22054, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22055, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22056, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22057, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22058, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22059, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22060, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22061, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22062, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22063, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22064, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22065, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22066, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22067, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22068, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22069, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22070, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22071, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22072, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22073, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22074, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22075, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22076, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22077, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22078, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22079, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22080, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22081, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22082, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22083, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22084, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22085, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22086, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22087, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22088, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22089, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22090, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22091, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22092, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22093, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22094, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22095, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22096, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22097, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22098, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22099, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22100, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22101, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22102, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22103, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22104, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22105, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22106, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22107, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22108, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22109, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22110, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22111, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22112, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22113, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22114, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22115, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22116, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22117, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22118, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22119, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22120, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22121, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22122, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22123, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22124, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22125, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22126, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22127, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22128, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22129, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22130, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobbled_deepslate_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 22137, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22138, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22139, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 22140, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22141, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22142, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22143, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22144, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22145, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22146, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22147, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22148, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22149, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22150, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22151, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22152, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22153, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22154, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22155, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22156, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22157, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22158, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22159, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22160, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22161, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22162, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22163, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22164, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22165, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22166, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22167, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22168, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22169, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22170, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22171, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22172, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22173, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22174, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22175, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22176, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22177, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22178, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22179, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22180, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22181, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22182, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22183, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22184, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22185, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22186, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22187, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22188, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22189, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22190, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22191, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22192, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22193, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22194, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22195, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22196, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22197, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22198, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22199, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22200, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22201, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22202, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22203, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22204, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22205, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22206, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22207, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22208, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22209, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22210, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22211, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22212, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22213, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22214, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22215, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22216, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22217, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22218, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22219, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22220, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22221, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22222, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22223, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22224, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22225, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22226, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22227, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22228, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22229, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22230, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22231, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22232, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22233, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22234, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22235, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22236, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22237, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22238, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22239, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22240, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22241, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22242, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22243, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22244, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22245, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22246, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22247, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22248, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22249, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22250, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22251, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22252, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22253, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22254, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22255, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22256, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22257, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22258, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22259, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22260, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22261, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22262, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22263, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22264, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22265, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22266, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22267, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22268, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22269, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22270, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22271, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22272, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22273, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22274, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22275, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22276, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22277, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22278, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22279, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22280, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22281, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22282, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22283, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22284, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22285, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22286, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22287, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22288, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22289, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22290, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22291, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22292, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22293, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22294, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22295, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22296, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22297, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22298, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22299, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22300, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22301, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22302, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22303, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22304, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22305, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22306, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22307, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22308, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22309, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22310, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22311, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22312, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22313, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22314, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22315, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22316, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22317, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22318, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22319, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22320, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22321, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22322, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22323, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22324, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22325, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22326, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22327, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22328, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22329, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22330, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22331, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22332, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22333, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22334, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22335, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22336, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22337, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22338, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22339, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22340, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22341, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22342, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22343, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22344, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22345, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22346, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22347, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22348, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22349, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22350, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22351, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22352, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22353, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22354, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22355, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22356, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22357, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22358, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22359, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22360, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22361, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22362, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22363, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22364, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22365, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22366, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22367, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22368, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22369, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22370, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22371, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22372, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22373, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22374, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22375, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22376, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22377, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22378, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22379, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22380, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22381, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22382, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22383, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22384, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22385, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22386, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22387, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22388, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22389, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22390, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22391, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22392, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22393, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22394, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22395, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22396, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22397, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22398, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22399, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22400, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22401, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22402, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22403, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22404, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22405, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22406, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22407, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22408, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22409, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22410, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22411, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22412, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22413, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22414, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22415, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22416, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22417, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22418, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22419, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22420, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22421, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22422, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22423, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22424, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22425, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22426, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22427, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22428, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22429, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22430, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22431, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22432, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22433, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22434, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22435, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22436, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22437, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22438, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22439, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22440, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22441, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22442, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22443, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22444, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22445, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22446, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22447, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22448, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22449, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22450, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22451, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22452, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22453, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22454, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22455, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22456, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22457, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22458, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22459, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22460, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:cobblestone": { - "states": [ - { - "default": true, - "id": 14 - } - ] - }, - "minecraft:cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11107, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11108, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11109, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11110, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11111, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11112, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4678, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4679, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4680, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4681, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4682, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4683, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4684, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4685, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4686, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4687, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4688, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4689, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4690, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4691, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4692, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4693, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4694, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4695, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4696, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4697, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4698, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4699, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4700, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4701, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4702, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4703, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4704, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4705, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4706, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4707, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4708, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4709, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4710, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4711, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4712, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4713, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4714, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4715, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4716, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4717, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4718, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4719, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4720, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4721, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4722, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4723, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4724, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4725, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4726, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4727, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4728, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4729, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4730, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4731, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4732, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4733, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4734, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4735, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4736, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4737, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4738, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4739, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4740, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4741, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4742, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4743, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4744, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4745, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4746, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4747, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4748, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4749, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4750, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4751, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4752, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4753, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4754, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4755, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4756, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4757, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 7915, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7916, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7917, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 7918, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7919, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7920, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7921, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7922, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7923, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7924, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7925, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7926, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7927, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7928, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7929, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7930, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7931, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7932, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7933, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7934, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7935, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7936, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7937, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7938, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7939, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7940, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7941, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7942, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7943, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7944, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7945, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7946, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7947, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7948, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7949, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7950, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7951, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7952, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7953, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7954, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7955, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7956, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7957, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7958, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7959, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7960, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7961, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7962, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7963, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7964, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7965, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7966, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7967, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7968, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7969, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7970, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7971, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7972, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7973, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7974, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7975, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7976, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7977, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7978, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7979, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7980, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7981, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7982, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7983, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7984, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7985, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7986, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7987, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7988, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7989, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7990, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7991, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7992, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7993, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7994, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7995, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7996, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7997, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7998, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7999, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8000, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8001, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8002, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8003, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8004, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8005, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8006, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8007, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8008, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8009, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8010, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8011, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8012, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8013, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8014, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8015, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8016, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8017, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8018, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8019, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8020, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8021, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8022, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8023, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8024, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8025, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8026, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8027, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8028, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8029, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8030, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8031, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8032, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8033, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8034, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8035, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8036, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8037, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8038, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8039, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8040, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8041, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8042, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8043, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8044, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8045, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8046, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8047, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8048, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8049, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8050, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8051, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8052, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8053, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8054, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8055, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8056, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8057, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8058, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8059, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8060, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8061, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8062, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8063, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8064, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8065, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8066, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8067, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8068, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8069, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8070, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8071, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8072, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8073, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8074, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8075, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8076, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8077, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8078, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8079, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8080, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8081, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8082, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8083, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8084, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8085, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8086, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8087, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8088, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8089, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8090, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8091, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8092, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8093, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8094, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8095, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8096, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8097, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8098, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8099, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8100, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8101, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8102, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8103, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8104, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8105, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8106, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8107, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8108, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8109, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8110, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8111, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8112, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8113, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8114, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8115, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8116, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8117, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8118, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8119, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8120, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8121, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8122, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8123, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8124, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8125, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8126, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8127, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8128, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8129, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8130, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8131, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8132, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8133, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8134, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8135, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8136, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8137, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8138, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8139, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8140, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8141, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8142, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8143, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8144, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8145, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8146, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8147, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8148, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8149, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8150, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8151, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8152, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8153, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8154, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8155, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8156, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8157, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8158, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8159, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8160, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8161, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8162, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8163, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8164, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8165, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8166, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8167, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8168, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8169, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8170, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8171, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8172, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8173, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8174, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8175, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8176, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8177, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8178, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8179, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8180, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8181, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8182, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8183, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8184, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8185, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8186, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8187, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8188, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8189, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8190, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8191, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8192, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8193, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8194, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8195, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8196, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8197, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8198, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8199, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8200, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8201, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8202, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8203, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8204, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8205, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8206, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8207, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8208, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8209, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8210, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8211, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8212, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8213, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8214, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8215, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8216, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8217, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8218, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8219, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8220, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8221, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8222, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8223, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8224, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8225, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8226, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8227, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8228, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8229, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8230, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8231, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8232, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8233, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8234, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8235, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8236, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8237, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8238, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:cobweb": { - "states": [ - { - "default": true, - "id": 2000 - } - ] - }, - "minecraft:cocoa": { - "properties": { - "age": [ - "0", - "1", - "2" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 7415, - "properties": { - "age": "0", - "facing": "north" - } - }, - { - "id": 7416, - "properties": { - "age": "0", - "facing": "south" - } - }, - { - "id": 7417, - "properties": { - "age": "0", - "facing": "west" - } - }, - { - "id": 7418, - "properties": { - "age": "0", - "facing": "east" - } - }, - { - "id": 7419, - "properties": { - "age": "1", - "facing": "north" - } - }, - { - "id": 7420, - "properties": { - "age": "1", - "facing": "south" - } - }, - { - "id": 7421, - "properties": { - "age": "1", - "facing": "west" - } - }, - { - "id": 7422, - "properties": { - "age": "1", - "facing": "east" - } - }, - { - "id": 7423, - "properties": { - "age": "2", - "facing": "north" - } - }, - { - "id": 7424, - "properties": { - "age": "2", - "facing": "south" - } - }, - { - "id": 7425, - "properties": { - "age": "2", - "facing": "west" - } - }, - { - "id": 7426, - "properties": { - "age": "2", - "facing": "east" - } - } - ] - }, - "minecraft:command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 7902, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 7903, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 7904, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 7905, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 7906, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 7907, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 7908, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 7909, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 7910, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 7911, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 7912, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 7913, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:comparator": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "mode": [ - "compare", - "subtract" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9031, - "properties": { - "facing": "north", - "mode": "compare", - "powered": "true" - } - }, - { - "default": true, - "id": 9032, - "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9033, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9034, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9035, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9036, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9037, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9038, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9039, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9040, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9041, - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9042, - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9043, - "properties": { - "facing": "east", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9044, - "properties": { - "facing": "east", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9045, - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9046, - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "false" - } - } - ] - }, - "minecraft:composter": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "default": true, - "id": 19213, - "properties": { - "level": "0" - } - }, - { - "id": 19214, - "properties": { - "level": "1" - } - }, - { - "id": 19215, - "properties": { - "level": "2" - } - }, - { - "id": 19216, - "properties": { - "level": "3" - } - }, - { - "id": 19217, - "properties": { - "level": "4" - } - }, - { - "id": 19218, - "properties": { - "level": "5" - } - }, - { - "id": 19219, - "properties": { - "level": "6" - } - }, - { - "id": 19220, - "properties": { - "level": "7" - } - }, - { - "id": 19221, - "properties": { - "level": "8" - } - } - ] - }, - "minecraft:conduit": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12783, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12784, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_block": { - "states": [ - { - "default": true, - "id": 21164 - } - ] - }, - "minecraft:copper_ore": { - "states": [ - { - "default": true, - "id": 21165 - } - ] - }, - "minecraft:cornflower": { - "states": [ - { - "default": true, - "id": 2082 - } - ] - }, - "minecraft:cracked_deepslate_bricks": { - "states": [ - { - "default": true, - "id": 23695 - } - ] - }, - "minecraft:cracked_deepslate_tiles": { - "states": [ - { - "default": true, - "id": 23696 - } - ] - }, - "minecraft:cracked_nether_bricks": { - "states": [ - { - "default": true, - "id": 20564 - } - ] - }, - "minecraft:cracked_polished_blackstone_bricks": { - "states": [ - { - "default": true, - "id": 19714 - } - ] - }, - "minecraft:cracked_stone_bricks": { - "states": [ - { - "default": true, - "id": 6536 - } - ] - }, - "minecraft:crafting_table": { - "states": [ - { - "default": true, - "id": 4273 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8903, - "properties": { - "rotation": "0" - } - }, - { - "id": 8904, - "properties": { - "rotation": "1" - } - }, - { - "id": 8905, - "properties": { - "rotation": "2" - } - }, - { - "id": 8906, - "properties": { - "rotation": "3" - } - }, - { - "id": 8907, - "properties": { - "rotation": "4" - } - }, - { - "id": 8908, - "properties": { - "rotation": "5" - } - }, - { - "id": 8909, - "properties": { - "rotation": "6" - } - }, - { - "id": 8910, - "properties": { - "rotation": "7" - } - }, - { - "id": 8911, - "properties": { - "rotation": "8" - } - }, - { - "id": 8912, - "properties": { - "rotation": "9" - } - }, - { - "id": 8913, - "properties": { - "rotation": "10" - } - }, - { - "id": 8914, - "properties": { - "rotation": "11" - } - }, - { - "id": 8915, - "properties": { - "rotation": "12" - } - }, - { - "id": 8916, - "properties": { - "rotation": "13" - } - }, - { - "id": 8917, - "properties": { - "rotation": "14" - } - }, - { - "id": 8918, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:creeper_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8919, - "properties": { - "facing": "north" - } - }, - { - "id": 8920, - "properties": { - "facing": "south" - } - }, - { - "id": 8921, - "properties": { - "facing": "west" - } - }, - { - "id": 8922, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:crimson_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18941, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18942, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18943, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18944, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18945, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18946, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18947, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18948, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18949, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 18950, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18951, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18952, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18953, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18954, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18955, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18956, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18957, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18958, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18959, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18960, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18961, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18962, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18963, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18964, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18989, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 18990, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 18991, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 18992, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 18993, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 18994, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 18995, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 18996, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 18997, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 18998, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 18999, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 19000, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19001, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19002, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19003, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19004, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19005, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19006, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19007, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19008, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19009, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19010, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19011, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19012, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19013, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19014, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19015, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19016, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19017, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19018, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19019, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19020, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19021, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19022, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19023, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19024, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19025, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19026, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19027, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19028, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19029, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19030, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19031, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19032, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19033, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19034, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19035, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19036, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19037, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19038, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19039, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19040, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19041, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19042, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19043, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19044, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19045, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19046, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19047, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19048, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19049, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19050, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19051, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19052, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18525, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18526, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18527, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18528, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18529, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18530, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18531, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18532, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18533, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18534, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18535, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18536, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18537, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18538, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18539, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18540, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18541, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18542, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18543, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18544, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18545, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18546, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18547, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18548, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18549, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18550, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18551, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18552, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18553, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18554, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18555, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 18556, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:crimson_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18717, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18718, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18719, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18720, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18721, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18722, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18723, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 18724, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18725, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18726, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18727, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18728, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18729, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18730, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18731, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18732, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18733, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18734, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18735, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18736, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18737, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18738, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18739, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18740, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18741, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18742, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18743, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18744, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18745, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18746, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18747, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18748, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_fungus": { - "states": [ - { - "default": true, - "id": 18450 - } - ] - }, - "minecraft:crimson_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5278, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5279, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5280, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5281, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5282, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5283, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5284, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5285, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5286, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5287, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5288, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5289, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5290, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5291, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5292, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5293, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5294, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5295, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5296, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5297, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5298, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5299, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5300, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5301, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5302, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5303, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5304, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5305, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5306, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5307, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5308, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5309, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5310, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5311, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5312, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5313, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5314, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5315, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5316, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5317, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5318, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5319, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5320, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5321, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5322, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5323, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5324, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5325, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5326, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5327, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5328, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5329, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5330, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5331, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5332, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5333, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5334, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5335, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5336, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5337, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5338, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5339, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5340, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5341, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18443, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18444, - "properties": { - "axis": "y" - } - }, - { - "id": 18445, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:crimson_nylium": { - "states": [ - { - "default": true, - "id": 18449 - } - ] - }, - "minecraft:crimson_planks": { - "states": [ - { - "default": true, - "id": 18507 - } - ] - }, - "minecraft:crimson_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18521, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 18522, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:crimson_roots": { - "states": [ - { - "default": true, - "id": 18506 - } - ] - }, - "minecraft:crimson_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19117, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19118, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 19119, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 19120, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 19121, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 19122, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 19123, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 19124, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 19125, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 19126, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 19127, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 19128, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 19129, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 19130, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 19131, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 19132, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 19133, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 19134, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 19135, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 19136, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 19137, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 19138, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 19139, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 19140, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 19141, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 19142, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 19143, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 19144, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 19145, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 19146, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 19147, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 19148, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18509, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 18510, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 18511, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18512, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 18513, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 18514, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18781, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18782, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18783, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18784, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18785, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18786, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18787, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18788, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18789, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18790, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18791, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18792, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18793, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18794, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18795, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18796, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18797, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18798, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18799, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18800, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18801, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18802, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18803, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18804, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18805, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18806, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18807, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18808, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18809, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18810, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18811, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18812, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18813, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18814, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18815, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18816, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18817, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18818, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18819, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18820, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18821, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18822, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18823, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18824, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18825, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18826, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18827, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18828, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18829, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18830, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18831, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18832, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18833, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18834, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18835, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18836, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18837, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18838, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18839, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18840, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18841, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18842, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18843, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18844, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18845, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18846, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18847, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18848, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18849, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18850, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18851, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18852, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18853, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18854, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18855, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18856, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18857, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18858, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18859, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18860, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18437, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18438, - "properties": { - "axis": "y" - } - }, - { - "id": 18439, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:crimson_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18589, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18590, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18591, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18592, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18593, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18594, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18595, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18596, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18597, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18598, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18599, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18600, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18601, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18602, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18603, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18604, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18605, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18606, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18607, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18608, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18609, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18610, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18611, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18612, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18613, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18614, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18615, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18616, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18617, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18618, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18619, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18620, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18621, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18622, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18623, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18624, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18625, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18626, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18627, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18628, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18629, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18630, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18631, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18632, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18633, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18634, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18635, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18636, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18637, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18638, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18639, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18640, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18641, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18642, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18643, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18644, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18645, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18646, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18647, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18648, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18649, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18650, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18651, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18652, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5598, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5599, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5600, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5601, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5602, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5603, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5604, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5605, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19181, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19182, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 19183, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 19184, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 19185, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 19186, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 19187, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 19188, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crying_obsidian": { - "states": [ - { - "default": true, - "id": 19290 - } - ] - }, - "minecraft:cut_copper": { - "states": [ - { - "default": true, - "id": 21170 - } - ] - }, - "minecraft:cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21509, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21510, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21511, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21512, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21513, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21514, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21411, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21412, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21413, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21414, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21415, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21416, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21417, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21418, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21419, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21420, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21421, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21422, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21423, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21424, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21425, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21426, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21427, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21428, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21429, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21430, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21431, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21432, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21433, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21434, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21435, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21436, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21437, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21438, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21439, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21440, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21441, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21442, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21443, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21444, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21445, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21446, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21447, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21448, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21449, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21450, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21451, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21452, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21453, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21454, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21455, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21456, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21457, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21458, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21459, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21460, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21461, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21462, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21463, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21464, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21465, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21466, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21467, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21468, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21469, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21470, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21471, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21472, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21473, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21474, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21475, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21476, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21477, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21478, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21479, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21480, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21481, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21482, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21483, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21484, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21485, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21486, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21487, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21488, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21489, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21490, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_red_sandstone": { - "states": [ - { - "default": true, - "id": 10936 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11149, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11150, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11151, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11152, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11153, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11154, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_sandstone": { - "states": [ - { - "default": true, - "id": 533 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11095, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11096, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11097, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11098, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11099, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11100, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cyan_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10758, - "properties": { - "rotation": "0" - } - }, - { - "id": 10759, - "properties": { - "rotation": "1" - } - }, - { - "id": 10760, - "properties": { - "rotation": "2" - } - }, - { - "id": 10761, - "properties": { - "rotation": "3" - } - }, - { - "id": 10762, - "properties": { - "rotation": "4" - } - }, - { - "id": 10763, - "properties": { - "rotation": "5" - } - }, - { - "id": 10764, - "properties": { - "rotation": "6" - } - }, - { - "id": 10765, - "properties": { - "rotation": "7" - } - }, - { - "id": 10766, - "properties": { - "rotation": "8" - } - }, - { - "id": 10767, - "properties": { - "rotation": "9" - } - }, - { - "id": 10768, - "properties": { - "rotation": "10" - } - }, - { - "id": 10769, - "properties": { - "rotation": "11" - } - }, - { - "id": 10770, - "properties": { - "rotation": "12" - } - }, - { - "id": 10771, - "properties": { - "rotation": "13" - } - }, - { - "id": 10772, - "properties": { - "rotation": "14" - } - }, - { - "id": 10773, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1828, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1829, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1830, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1831, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1832, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1833, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1834, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1835, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1836, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1837, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1838, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1839, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1840, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1841, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1842, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1843, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:cyan_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20726, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20727, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20728, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20729, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20730, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20731, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20732, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20733, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20734, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20735, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20736, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20737, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20738, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20739, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20740, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20741, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cyan_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20858, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20859, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "default": true, - "id": 10592 - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ - { - "default": true, - "id": 12581 - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ - { - "default": true, - "id": 12597 - } - ] - }, - "minecraft:cyan_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12544, - "properties": { - "facing": "north" - } - }, - { - "id": 12545, - "properties": { - "facing": "south" - } - }, - { - "id": 12546, - "properties": { - "facing": "west" - } - }, - { - "id": 12547, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12466, - "properties": { - "facing": "north" - } - }, - { - "id": 12467, - "properties": { - "facing": "east" - } - }, - { - "id": 12468, - "properties": { - "facing": "south" - } - }, - { - "id": 12469, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12470, - "properties": { - "facing": "up" - } - }, - { - "id": 12471, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "default": true, - "id": 5951 - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9516, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9517, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9518, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9519, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9520, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9521, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9522, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9523, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9524, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9525, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9526, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9527, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9528, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9529, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9530, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9531, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9532, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9533, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9534, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9535, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9536, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9537, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9538, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9539, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9540, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9541, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9542, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9543, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9544, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9545, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9546, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9547, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ - { - "default": true, - "id": 9221 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10906, - "properties": { - "facing": "north" - } - }, - { - "id": 10907, - "properties": { - "facing": "south" - } - }, - { - "id": 10908, - "properties": { - "facing": "west" - } - }, - { - "id": 10909, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cyan_wool": { - "states": [ - { - "default": true, - "id": 2052 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8971, - "properties": { - "facing": "north" - } - }, - { - "id": 8972, - "properties": { - "facing": "south" - } - }, - { - "id": 8973, - "properties": { - "facing": "west" - } - }, - { - "id": 8974, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:dandelion": { - "states": [ - { - "default": true, - "id": 2071 - } - ] - }, - "minecraft:dark_oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8751, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8752, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8753, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8754, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8755, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8756, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8757, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8758, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8759, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8760, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8761, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8762, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8763, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8764, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8765, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8766, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8767, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8768, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8769, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8770, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8771, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8772, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8773, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8774, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11997, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11998, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11999, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12000, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12001, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12002, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12003, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12004, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12005, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12006, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12007, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 12008, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12009, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12010, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12011, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12012, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12013, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12014, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12015, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12016, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12017, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12018, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12019, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12020, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12021, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12022, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12023, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12024, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12025, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12026, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12027, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12028, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12029, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12030, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12031, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12032, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12033, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12034, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12035, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12036, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12037, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12038, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12039, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12040, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12041, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12042, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12043, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12044, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12045, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12046, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12047, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12048, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12049, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12050, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12051, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12052, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12053, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12054, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12055, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12056, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12057, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12058, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12059, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12060, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11581, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11582, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11583, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11584, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11585, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11586, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11587, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11588, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11589, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11590, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11591, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11592, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11593, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11594, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11595, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11596, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11597, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11598, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11599, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11600, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11601, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11602, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11603, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11604, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11605, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11606, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11607, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11608, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11609, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11610, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11611, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11612, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:dark_oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11325, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11326, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11327, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11328, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11329, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11330, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11331, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11332, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11333, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11334, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11335, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11336, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11337, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11338, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11339, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11340, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11341, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11342, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11343, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11344, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11345, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11346, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11347, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11348, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11349, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11350, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11351, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11352, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11353, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11354, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11355, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11356, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5214, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5215, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5216, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5217, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5218, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5219, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5220, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5221, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5222, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5223, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5224, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5225, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5226, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5227, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5228, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5229, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5230, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5231, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5232, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5233, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5234, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5235, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5236, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5237, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5238, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5239, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5240, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5241, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5242, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5243, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5244, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5245, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5246, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5247, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5248, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5249, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5250, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5251, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5252, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5253, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5254, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5255, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5256, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5257, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5258, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5259, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5260, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5261, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5262, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5263, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5264, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5265, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5266, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5267, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5268, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5269, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5270, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5271, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5272, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5273, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5274, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5275, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5276, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5277, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 401, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 402, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 403, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 404, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 405, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 406, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 407, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 408, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 409, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 410, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 411, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 412, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 413, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 414, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 415, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 416, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 417, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 418, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 419, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 420, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 421, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 422, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 423, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 424, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 425, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 426, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 427, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 428, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 144, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 145, - "properties": { - "axis": "y" - } - }, - { - "id": 146, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:dark_oak_planks": { - "states": [ - { - "default": true, - "id": 21 - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5724, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5725, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 37, - "properties": { - "stage": "0" - } - }, - { - "id": 38, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4490, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4491, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4492, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4493, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4494, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4495, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4496, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4497, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4498, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4499, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4500, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4501, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4502, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4503, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4504, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4505, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4506, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4507, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4508, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4509, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4510, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4511, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4512, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4513, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4514, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4515, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4516, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4517, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4518, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4519, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4520, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4521, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11053, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11054, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11055, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11056, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11057, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11058, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9900, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9901, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9902, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9903, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9904, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9905, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9906, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9907, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9908, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9909, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9910, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9911, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9912, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9913, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9914, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9915, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9916, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9917, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9918, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9919, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9920, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9921, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9922, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9923, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9924, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9925, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9926, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9927, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9928, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9929, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9930, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9931, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9932, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9933, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9934, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9935, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9936, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9937, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9938, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9939, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9940, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9941, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9942, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9943, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9944, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9945, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9946, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9947, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9948, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9949, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9950, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9951, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9952, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9953, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9954, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9955, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9956, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9957, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9958, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9959, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9960, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9961, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9962, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9963, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9964, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9965, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9966, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9967, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9968, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9969, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9970, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9971, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9972, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9973, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9974, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9975, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9976, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9977, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9978, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9979, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6342, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6343, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6344, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6345, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6346, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6347, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6348, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6349, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6350, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6351, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6352, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6353, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6354, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6355, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6356, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6357, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6358, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6359, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6360, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6361, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6362, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6363, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6364, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6365, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6366, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6367, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6368, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6369, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6370, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6371, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6372, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6373, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6374, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6375, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6376, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6377, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6378, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6379, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6380, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6381, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6382, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6383, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6384, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6385, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6386, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6387, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6388, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6389, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6390, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6391, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6392, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6393, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6394, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6395, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6396, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6397, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6398, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6399, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6400, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6401, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6402, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6403, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6404, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6405, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5582, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5583, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5584, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5585, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5586, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5587, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5588, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5589, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4806, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4807, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4808, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4809, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4810, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4811, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4812, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4813, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 203, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 204, - "properties": { - "axis": "y" - } - }, - { - "id": 205, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ - { - "default": true, - "id": 10320 - } - ] - }, - "minecraft:dark_prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10573, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10574, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10575, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10576, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10577, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10578, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10481, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10482, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10483, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10484, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10485, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10486, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10487, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10488, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10489, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10490, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10491, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10492, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10493, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10494, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10495, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10496, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10497, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10498, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10499, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10500, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10501, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10502, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10503, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10504, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10505, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10506, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10507, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10508, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10509, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10510, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10511, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10512, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10513, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10514, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10515, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10516, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10517, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10518, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10519, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10520, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10521, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10522, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10523, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10524, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10525, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10526, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10527, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10528, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10529, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10530, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10531, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10532, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10533, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10534, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10535, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10536, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10537, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10538, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10539, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10540, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10541, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10542, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10543, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10544, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10545, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10546, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10547, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10548, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10549, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10550, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10551, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10552, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10553, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10554, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10555, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10556, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10557, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10558, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10559, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10560, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:daylight_detector": { - "properties": { - "inverted": [ - "true", - "false" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "id": 9047, - "properties": { - "inverted": "true", - "power": "0" - } - }, - { - "id": 9048, - "properties": { - "inverted": "true", - "power": "1" - } - }, - { - "id": 9049, - "properties": { - "inverted": "true", - "power": "2" - } - }, - { - "id": 9050, - "properties": { - "inverted": "true", - "power": "3" - } - }, - { - "id": 9051, - "properties": { - "inverted": "true", - "power": "4" - } - }, - { - "id": 9052, - "properties": { - "inverted": "true", - "power": "5" - } - }, - { - "id": 9053, - "properties": { - "inverted": "true", - "power": "6" - } - }, - { - "id": 9054, - "properties": { - "inverted": "true", - "power": "7" - } - }, - { - "id": 9055, - "properties": { - "inverted": "true", - "power": "8" - } - }, - { - "id": 9056, - "properties": { - "inverted": "true", - "power": "9" - } - }, - { - "id": 9057, - "properties": { - "inverted": "true", - "power": "10" - } - }, - { - "id": 9058, - "properties": { - "inverted": "true", - "power": "11" - } - }, - { - "id": 9059, - "properties": { - "inverted": "true", - "power": "12" - } - }, - { - "id": 9060, - "properties": { - "inverted": "true", - "power": "13" - } - }, - { - "id": 9061, - "properties": { - "inverted": "true", - "power": "14" - } - }, - { - "id": 9062, - "properties": { - "inverted": "true", - "power": "15" - } - }, - { - "default": true, - "id": 9063, - "properties": { - "inverted": "false", - "power": "0" - } - }, - { - "id": 9064, - "properties": { - "inverted": "false", - "power": "1" - } - }, - { - "id": 9065, - "properties": { - "inverted": "false", - "power": "2" - } - }, - { - "id": 9066, - "properties": { - "inverted": "false", - "power": "3" - } - }, - { - "id": 9067, - "properties": { - "inverted": "false", - "power": "4" - } - }, - { - "id": 9068, - "properties": { - "inverted": "false", - "power": "5" - } - }, - { - "id": 9069, - "properties": { - "inverted": "false", - "power": "6" - } - }, - { - "id": 9070, - "properties": { - "inverted": "false", - "power": "7" - } - }, - { - "id": 9071, - "properties": { - "inverted": "false", - "power": "8" - } - }, - { - "id": 9072, - "properties": { - "inverted": "false", - "power": "9" - } - }, - { - "id": 9073, - "properties": { - "inverted": "false", - "power": "10" - } - }, - { - "id": 9074, - "properties": { - "inverted": "false", - "power": "11" - } - }, - { - "id": 9075, - "properties": { - "inverted": "false", - "power": "12" - } - }, - { - "id": 9076, - "properties": { - "inverted": "false", - "power": "13" - } - }, - { - "id": 9077, - "properties": { - "inverted": "false", - "power": "14" - } - }, - { - "id": 9078, - "properties": { - "inverted": "false", - "power": "15" - } - } - ] - }, - "minecraft:dead_brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12656, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12657, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "default": true, - "id": 12645 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12676, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12677, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12702, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12703, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12704, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12705, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12706, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12707, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12708, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12709, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12658, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12659, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "default": true, - "id": 12646 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12678, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12679, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12710, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12711, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12712, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12713, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12714, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12715, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12716, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12717, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bush": { - "states": [ - { - "default": true, - "id": 2003 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12660, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12661, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "default": true, - "id": 12647 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12680, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12681, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12718, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12719, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12720, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12721, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12722, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12723, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12724, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12725, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12662, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12663, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "default": true, - "id": 12648 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12682, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12683, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12726, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12727, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12728, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12729, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12730, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12731, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12732, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12733, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12654, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12655, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "default": true, - "id": 12644 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12674, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12675, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12694, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12695, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12696, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12697, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12698, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12699, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12700, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12701, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:decorated_pot": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23717, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23718, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 23719, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 23720, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 23721, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 23722, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 23723, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 23724, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 22047, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 22048, - "properties": { - "axis": "y" - } - }, - { - "id": 22049, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:deepslate_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23364, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 23365, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 23366, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23367, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 23368, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 23369, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23284, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23285, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23286, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23287, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23288, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23289, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23290, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23291, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23292, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23293, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23294, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23295, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23296, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23297, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23298, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23299, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23300, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23301, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23302, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23303, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23304, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23305, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23306, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23307, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23308, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23309, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23310, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23311, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23312, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23313, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23314, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23315, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23316, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23317, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23318, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23319, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23320, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23321, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23322, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23323, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23324, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23325, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23326, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23327, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23328, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23329, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23330, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23331, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23332, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23333, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23334, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23335, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23336, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23337, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23338, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23339, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23340, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23341, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23342, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23343, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23344, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23345, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23346, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23347, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23348, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23349, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23350, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23351, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23352, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23353, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23354, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23355, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23356, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23357, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23358, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23359, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23360, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23361, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23362, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23363, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 23370, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23371, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23372, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 23373, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23374, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23375, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23376, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23377, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23378, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23379, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23380, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23381, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23382, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23383, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23384, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23385, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23386, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23387, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23388, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23389, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23390, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23391, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23392, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23393, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23394, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23395, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23396, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23397, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23398, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23399, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23400, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23401, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23402, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23403, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23404, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23405, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23406, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23407, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23408, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23409, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23410, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23411, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23412, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23413, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23414, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23415, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23416, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23417, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23418, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23419, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23420, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23421, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23422, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23423, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23424, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23425, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23426, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23427, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23428, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23429, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23430, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23431, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23432, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23433, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23434, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23435, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23436, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23437, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23438, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23439, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23440, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23441, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23442, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23443, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23444, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23445, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23446, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23447, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23448, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23449, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23450, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23451, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23452, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23453, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23454, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23455, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23456, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23457, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23458, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23459, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23460, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23461, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23462, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23463, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23464, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23465, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23466, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23467, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23468, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23469, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23470, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23471, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23472, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23473, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23474, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23475, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23476, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23477, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23478, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23479, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23480, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23481, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23482, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23483, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23484, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23485, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23486, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23487, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23488, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23489, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23490, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23491, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23492, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23493, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23494, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23495, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23496, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23497, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23498, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23499, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23500, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23501, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23502, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23503, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23504, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23505, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23506, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23507, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23508, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23509, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23510, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23511, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23512, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23513, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23514, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23515, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23516, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23517, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23518, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23519, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23520, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23521, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23522, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23523, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23524, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23525, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23526, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23527, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23528, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23529, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23530, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23531, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23532, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23533, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23534, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23535, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23536, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23537, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23538, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23539, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23540, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23541, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23542, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23543, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23544, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23545, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23546, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23547, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23548, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23549, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23550, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23551, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23552, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23553, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23554, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23555, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23556, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23557, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23558, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23559, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23560, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23561, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23562, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23563, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23564, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23565, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23566, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23567, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23568, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23569, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23570, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23571, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23572, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23573, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23574, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23575, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23576, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23577, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23578, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23579, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23580, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23581, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23582, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23583, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23584, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23585, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23586, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23587, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23588, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23589, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23590, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23591, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23592, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23593, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23594, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23595, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23596, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23597, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23598, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23599, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23600, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23601, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23602, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23603, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23604, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23605, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23606, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23607, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23608, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23609, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23610, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23611, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23612, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23613, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23614, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23615, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23616, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23617, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23618, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23619, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23620, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23621, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23622, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23623, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23624, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23625, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23626, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23627, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23628, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23629, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23630, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23631, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23632, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23633, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23634, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23635, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23636, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23637, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23638, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23639, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23640, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23641, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23642, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23643, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23644, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23645, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23646, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23647, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23648, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23649, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23650, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23651, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23652, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23653, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23654, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23655, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23656, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23657, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23658, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23659, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23660, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23661, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23662, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23663, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23664, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23665, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23666, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23667, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23668, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23669, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23670, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23671, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23672, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23673, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23674, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23675, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23676, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23677, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23678, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23679, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23680, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23681, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23682, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23683, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23684, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23685, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23686, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23687, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23688, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23689, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23690, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23691, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23692, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23693, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:deepslate_bricks": { - "states": [ - { - "default": true, - "id": 23283 - } - ] - }, - "minecraft:deepslate_coal_ore": { - "states": [ - { - "default": true, - "id": 124 - } - ] - }, - "minecraft:deepslate_copper_ore": { - "states": [ - { - "default": true, - "id": 21166 - } - ] - }, - "minecraft:deepslate_diamond_ore": { - "states": [ - { - "default": true, - "id": 4271 - } - ] - }, - "minecraft:deepslate_emerald_ore": { - "states": [ - { - "default": true, - "id": 7508 - } - ] - }, - "minecraft:deepslate_gold_ore": { - "states": [ - { - "default": true, - "id": 120 - } - ] - }, - "minecraft:deepslate_iron_ore": { - "states": [ - { - "default": true, - "id": 122 - } - ] - }, - "minecraft:deepslate_lapis_ore": { - "states": [ - { - "default": true, - "id": 517 - } - ] - }, - "minecraft:deepslate_redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5732, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 5733, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:deepslate_tile_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22953, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22954, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22955, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22956, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22957, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22958, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_tile_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22873, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22874, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22875, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22876, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22877, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22878, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22879, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22880, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22881, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22882, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22883, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22884, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22885, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22886, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22887, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22888, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22889, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22890, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22891, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22892, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22893, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22894, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22895, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22896, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22897, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22898, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22899, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22900, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22901, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22902, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22903, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22904, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22905, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22906, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22907, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22908, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22909, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22910, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22911, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22912, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22913, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22914, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22915, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22916, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22917, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22918, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22919, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22920, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22921, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22922, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22923, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22924, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22925, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22926, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22927, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22928, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22929, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22930, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22931, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22932, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22933, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22934, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22935, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22936, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22937, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22938, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22939, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22940, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22941, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22942, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22943, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22944, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22945, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22946, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22947, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22948, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22949, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22950, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22951, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22952, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_tile_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 22959, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22960, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22961, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 22962, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22963, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22964, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22965, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22966, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22967, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22968, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22969, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22970, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22971, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22972, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22973, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22974, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22975, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22976, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22977, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22978, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22979, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22980, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22981, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22982, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22983, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22984, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22985, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22986, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22987, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22988, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22989, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22990, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22991, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22992, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22993, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22994, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22995, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22996, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22997, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22998, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22999, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23000, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23001, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23002, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23003, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23004, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23005, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23006, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23007, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23008, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23009, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23010, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23011, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23012, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23013, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23014, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23015, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23016, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23017, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23018, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23019, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23020, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23021, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23022, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23023, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23024, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23025, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23026, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23027, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23028, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23029, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23030, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23031, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23032, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23033, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23034, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23035, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23036, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23037, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23038, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23039, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23040, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23041, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23042, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23043, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23044, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23045, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23046, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23047, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23048, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23049, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23050, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23051, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23052, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23053, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23054, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23055, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23056, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23057, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23058, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23059, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23060, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23061, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23062, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23063, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23064, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23065, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23066, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23067, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23068, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23069, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23070, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23071, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23072, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23073, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23074, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23075, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23076, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23077, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23078, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23079, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23080, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23081, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23082, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23083, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23084, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23085, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23086, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23087, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23088, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23089, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23090, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23091, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23092, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23093, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23094, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23095, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23096, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23097, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23098, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23099, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23100, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23101, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23102, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23103, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23104, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23105, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23106, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23107, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23108, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23109, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23110, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23111, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23112, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23113, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23114, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23115, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23116, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23117, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23118, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23119, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23120, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23121, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23122, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23123, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23124, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23125, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23126, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23127, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23128, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23129, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23130, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23131, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23132, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23133, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23134, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23135, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23136, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23137, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23138, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23139, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23140, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23141, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23142, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23143, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23144, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23145, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23146, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23147, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23148, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23149, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23150, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23151, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23152, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23153, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23154, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23155, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23156, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23157, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23158, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23159, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23160, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23161, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23162, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23163, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23164, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23165, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23166, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23167, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23168, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23169, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23170, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23171, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23172, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23173, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23174, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23175, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23176, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23177, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23178, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23179, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23180, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23181, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23182, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23183, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23184, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23185, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23186, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23187, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23188, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23189, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23190, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23191, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23192, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23193, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23194, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23195, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23196, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23197, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23198, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23199, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23200, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23201, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23202, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23203, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23204, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23205, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23206, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23207, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23208, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23209, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23210, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23211, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23212, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23213, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23214, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23215, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23216, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23217, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23218, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23219, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23220, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23221, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23222, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23223, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23224, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23225, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23226, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23227, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23228, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23229, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23230, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23231, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23232, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23233, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23234, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23235, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23236, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23237, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23238, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23239, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23240, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23241, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23242, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23243, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23244, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23245, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23246, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23247, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23248, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23249, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23250, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23251, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23252, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23253, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23254, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23255, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23256, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23257, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23258, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23259, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23260, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23261, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23262, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23263, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23264, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23265, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23266, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23267, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23268, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23269, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23270, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23271, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23272, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23273, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23274, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23275, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23276, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23277, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23278, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23279, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23280, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23281, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23282, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:deepslate_tiles": { - "states": [ - { - "default": true, - "id": 22872 - } - ] - }, - "minecraft:detector_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 1964, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 1965, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1966, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1967, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1968, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1969, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1970, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1971, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1972, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1973, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1974, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1975, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 1976, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 1977, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1978, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1979, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1980, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1981, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1982, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1983, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1984, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1985, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1986, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1987, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:diamond_block": { - "states": [ - { - "default": true, - "id": 4272 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ - { - "default": true, - "id": 4270 - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "default": true, - "id": 4 - } - ] - }, - "minecraft:diorite_slab": { "properties": { "type": [ "top", @@ -73732,6 +4739,72571 @@ } ] }, + "minecraft:andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13621, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13622, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13623, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13624, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13625, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13626, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13627, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13628, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13629, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13630, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13631, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13632, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13633, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13634, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13635, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13636, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13637, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13638, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13639, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13640, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13641, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13642, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13643, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13644, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13645, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13646, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13647, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13648, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13649, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13650, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13651, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13652, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13653, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13654, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13655, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13656, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13657, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13658, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13659, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13660, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13662, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13663, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13664, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13665, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13666, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13667, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13668, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13669, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13670, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13671, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13672, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13673, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13674, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13675, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13676, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13677, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13678, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13679, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13680, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13681, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13682, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13683, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13684, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13685, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13686, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13687, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13688, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13689, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13690, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13691, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13692, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13693, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13694, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13695, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13696, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13697, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13698, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13699, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13700, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16611, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16612, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16613, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16614, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16615, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16616, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16617, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16618, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16619, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16620, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16621, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16622, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16623, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16624, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16625, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16626, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16627, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16628, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16629, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16630, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16631, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16632, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16633, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16634, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16635, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16636, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16637, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16638, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16639, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16640, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16641, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16642, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16643, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16644, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16645, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16646, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16647, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16648, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16649, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16650, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16651, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16652, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16653, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16654, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16655, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16656, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16657, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16659, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16660, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16661, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16662, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16663, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16664, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16665, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16666, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16667, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16668, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16669, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16670, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16671, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16672, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16673, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16674, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16675, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16676, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16677, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16678, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16679, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16680, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16681, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16682, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16683, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16693, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16694, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16695, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16696, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16697, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16698, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16699, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16700, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16701, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16702, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16703, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16704, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16705, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16706, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16707, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16708, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16709, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16710, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16711, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16712, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16713, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16714, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16715, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16716, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16717, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16718, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16719, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16729, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16730, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16731, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16732, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16733, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16734, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16735, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16736, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16737, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16738, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16739, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16740, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16741, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16742, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16743, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16744, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16745, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16746, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16747, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16748, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16749, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16750, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16751, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16752, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16753, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16754, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16755, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16765, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16766, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16767, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16768, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16769, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16770, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16771, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16772, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16773, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16774, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16775, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16776, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16777, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16778, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16779, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16789, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16790, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16791, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16801, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16802, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16803, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16804, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16805, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16806, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16807, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16808, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16809, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16810, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16811, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16812, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16813, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16814, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16815, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16816, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16817, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16818, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16819, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16820, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16821, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16822, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16823, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16824, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16825, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16826, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16827, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16828, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16829, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16830, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16831, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16832, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16833, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16834, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16835, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16836, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16837, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16838, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16839, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16840, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16841, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16842, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16843, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16844, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16845, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16846, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16847, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16848, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16849, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16850, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16851, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16852, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16853, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16854, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16855, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16856, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16857, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16858, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16859, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16860, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16861, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16862, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16863, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16864, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16865, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16866, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16867, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16868, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16869, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16870, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16871, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16872, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16873, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16874, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16875, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16876, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16877, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16878, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16879, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16880, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16881, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16882, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16883, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16884, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16885, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16886, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16887, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16888, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16889, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16890, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16891, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16892, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16893, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16894, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16895, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16896, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16897, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16898, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16899, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16900, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16901, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16902, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16903, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16904, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16905, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16906, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16907, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16908, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16909, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16910, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16911, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16912, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16913, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16914, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16915, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16916, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16917, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16918, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16919, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16920, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16921, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16922, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16923, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16924, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16925, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16926, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16927, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16928, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16929, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16930, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16931, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16932, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16933, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16934, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8967, + "properties": { + "facing": "north" + } + }, + { + "id": 8968, + "properties": { + "facing": "south" + } + }, + { + "id": 8969, + "properties": { + "facing": "west" + } + }, + { + "id": 8970, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6817, + "properties": { + "facing": "north" + } + }, + { + "id": 6818, + "properties": { + "facing": "south" + } + }, + { + "id": 6819, + "properties": { + "facing": "west" + } + }, + { + "id": 6820, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6813, + "properties": { + "facing": "north" + } + }, + { + "id": 6814, + "properties": { + "facing": "south" + } + }, + { + "id": 6815, + "properties": { + "facing": "west" + } + }, + { + "id": 6816, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "states": [ + { + "default": true, + "id": 22369 + } + ] + }, + "minecraft:azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 461, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 462, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 463, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 464, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 465, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 466, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 467, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 468, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 469, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 470, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 471, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 472, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 473, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 474, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 475, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 476, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 477, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 478, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 479, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 480, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 481, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 482, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 483, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 484, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 485, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 486, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 487, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 488, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "states": [ + { + "default": true, + "id": 2080 + } + ] + }, + "minecraft:bamboo": { + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12804, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12805, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12806, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12807, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12808, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12809, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 12810, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12811, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12812, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12813, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12814, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12815, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 159, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 160, + "properties": { + "axis": "y" + } + }, + { + "id": 161, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8803, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8804, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8805, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8806, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8807, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8808, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8809, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8810, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8811, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8812, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8813, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8814, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8815, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8816, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8817, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8818, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8819, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8820, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8821, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8822, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8823, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8824, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8825, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8826, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12129, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12130, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12131, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12132, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12133, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12134, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12135, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12136, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12137, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12138, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12139, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12140, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12141, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12142, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12143, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12144, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12145, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12146, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12147, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12148, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12149, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12150, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12151, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12152, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12153, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12154, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12155, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12156, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12157, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12158, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12159, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12160, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12161, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12162, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12163, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12164, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12165, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12166, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12167, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12168, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12169, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12170, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12171, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12172, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12173, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12174, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12175, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12176, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12177, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12178, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12179, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12180, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12181, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12182, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12183, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12184, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12185, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12186, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12187, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12188, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12189, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12190, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12191, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12192, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11649, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11650, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11651, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11652, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11653, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11654, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11655, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11656, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11657, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11658, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11659, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11660, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11661, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11662, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11663, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11664, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11665, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11666, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11667, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11668, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11669, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11670, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11671, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11672, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11673, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11674, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11675, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11676, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11677, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11678, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11679, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11680, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11393, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11394, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11395, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11396, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11397, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11398, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11399, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11400, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11401, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11402, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11403, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11404, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11405, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11406, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11407, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11408, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11409, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11410, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11411, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11412, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11413, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11414, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11415, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11416, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11417, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11418, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11419, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11420, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11421, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11422, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11423, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11424, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5474, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5475, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5476, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5477, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5478, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5479, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5480, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5481, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5482, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5483, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5484, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5485, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5486, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5487, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5488, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5489, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5490, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5491, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5492, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5493, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5494, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5495, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5496, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5497, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5498, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5499, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5500, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5501, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5502, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5503, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5504, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5505, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5506, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5507, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5508, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5509, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5510, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5511, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5512, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5513, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5514, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5515, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5516, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5517, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5518, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5519, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5520, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5521, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5522, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5523, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5524, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5525, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5526, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5527, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5528, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5529, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5530, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5531, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5532, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5533, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5534, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5535, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5536, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5537, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "states": [ + { + "default": true, + "id": 24 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11075, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11076, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11077, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11078, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11079, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11080, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10144, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10145, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10146, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10147, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10148, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10149, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10150, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10151, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10152, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10153, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10154, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10155, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10156, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10157, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10158, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10159, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10160, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10161, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10162, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10163, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10164, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10165, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10166, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10167, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10168, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10169, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10171, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10172, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10173, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10181, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10182, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10183, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10184, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10185, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10186, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10187, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10188, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10189, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10190, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10191, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10192, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10193, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10194, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10195, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10196, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10197, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10198, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10199, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10200, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10201, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10202, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10203, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10204, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10205, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10207, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10208, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10209, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10211, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10212, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10213, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10221, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10222, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10223, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "states": [ + { + "default": true, + "id": 23 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5732, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5733, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "states": [ + { + "default": true, + "id": 12803 + } + ] + }, + "minecraft:bamboo_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4558, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4559, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4560, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4561, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4562, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4563, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4564, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4565, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4566, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4567, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4568, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4569, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4570, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4571, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4572, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4573, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4574, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4575, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4576, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4577, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4578, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4579, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4580, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4581, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4582, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4583, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4584, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4585, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4586, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4587, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4588, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4589, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11069, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11070, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11071, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11072, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11073, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11074, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10064, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10065, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10066, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10067, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10068, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10069, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10070, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10071, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10072, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10073, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10074, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10075, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10076, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10077, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10078, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10079, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10080, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10081, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10082, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10083, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10084, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10085, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10086, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10087, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10088, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10089, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10090, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10091, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10092, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10093, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10094, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10095, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10096, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10097, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10098, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10099, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10100, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10101, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10102, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10103, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10104, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10105, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10106, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10107, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10108, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10109, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10110, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10111, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10112, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10113, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10114, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10115, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10116, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10117, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10118, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10119, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10120, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10121, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10122, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10123, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10124, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10125, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10126, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10127, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10128, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10129, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10130, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10131, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10132, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10133, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10134, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10135, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10136, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10137, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10138, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10139, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10140, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10141, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10142, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10143, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6474, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6475, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6476, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6477, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6478, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6479, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6480, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6481, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6482, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6483, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6484, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6485, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6486, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6487, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6488, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6489, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6490, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6491, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6492, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6493, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6494, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6495, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6496, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6497, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6498, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6499, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6500, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6501, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6502, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6503, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6504, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6505, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6506, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6507, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6508, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6509, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6510, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6511, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6512, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6513, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6514, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6515, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6516, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6517, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6518, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6519, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6520, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6521, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6522, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6523, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6524, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6525, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6526, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6527, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6528, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6529, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6530, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6531, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6532, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6533, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6534, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6535, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6536, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6537, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5618, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5619, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5620, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5621, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5622, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5623, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5624, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5625, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4826, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4827, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4828, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4829, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4830, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4831, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4832, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4833, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:barrel": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18267, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 18268, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 18269, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 18270, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 18271, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 18272, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 18273, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 18274, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 18275, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 18276, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 18277, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 18278, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "states": [ + { + "default": true, + "id": 10225 + } + ] + }, + "minecraft:basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5853, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5854, + "properties": { + "axis": "y" + } + }, + { + "id": 5855, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "states": [ + { + "default": true, + "id": 7918 + } + ] + }, + "minecraft:bedrock": { + "states": [ + { + "default": true, + "id": 79 + } + ] + }, + "minecraft:bee_nest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19256, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19257, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19258, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19259, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19260, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19261, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19262, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19263, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19264, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19265, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19266, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19267, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19268, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19269, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19270, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19271, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19272, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19273, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19274, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19275, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19276, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19277, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19278, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19279, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19280, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19281, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19282, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19283, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19284, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19285, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19286, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19287, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19288, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19289, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19290, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19291, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19292, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19293, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19294, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19295, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19296, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19297, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19298, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19299, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19300, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19301, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19302, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19303, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12368, + "properties": { + "age": "0" + } + }, + { + "id": 12369, + "properties": { + "age": "1" + } + }, + { + "id": 12370, + "properties": { + "age": "2" + } + }, + { + "id": 12371, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18330, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 18331, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18332, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18333, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18334, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18335, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18336, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18337, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18338, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18339, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18340, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18341, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18342, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18343, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18344, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18345, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18346, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18347, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18348, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18349, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18350, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18351, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18352, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18353, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18354, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18355, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18356, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18357, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18358, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18359, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18360, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18361, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22389, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22390, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 22391, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 22392, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 22393, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 22394, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 22395, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 22396, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 22397, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 22398, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 22399, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 22400, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 22401, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 22402, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 22403, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 22404, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 22405, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 22406, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 22407, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 22408, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 22409, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 22410, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 22411, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 22412, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 22413, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 22414, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 22415, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 22416, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 22417, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 22418, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 22419, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 22420, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22421, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22422, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 22423, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 22424, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 22425, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 22426, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 22427, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 22428, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8659, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8660, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8661, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8662, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8663, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8664, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8665, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8666, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8667, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8668, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8669, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8670, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8671, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8672, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8673, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8674, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8675, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8676, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8677, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8678, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8679, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8680, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8681, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8682, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11745, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11746, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11747, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11748, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11749, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11750, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11751, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11752, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11753, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11754, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11755, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11756, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11757, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11758, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11759, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11760, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11761, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11762, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11763, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11764, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11765, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11766, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11767, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11768, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11769, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11770, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11771, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11772, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11773, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11774, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11775, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11776, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11777, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11778, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11779, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11780, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11781, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11782, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11783, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11784, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11785, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11786, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11787, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11788, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11789, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11790, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11791, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11792, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11793, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11794, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11795, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11796, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11797, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11798, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11799, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11800, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11801, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11802, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11803, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11804, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11805, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11806, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11807, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11808, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11457, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11458, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11459, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11460, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11461, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11462, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11463, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11464, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11465, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11466, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11467, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11468, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11469, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11470, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11471, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11472, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11473, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11474, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11475, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11476, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11477, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11478, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11479, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11480, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11481, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11482, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11483, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11484, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11485, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11486, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11487, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11488, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11201, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11202, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11203, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11204, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11205, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11206, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11207, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11208, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11209, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11210, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11211, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11212, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11213, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11214, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11215, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11216, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11217, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11218, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11219, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11220, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11221, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11222, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11223, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11224, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11225, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11226, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11227, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11228, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11229, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11230, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11231, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11232, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4962, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4963, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4964, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4965, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4966, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4967, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4968, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4969, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4970, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4971, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4972, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4973, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4974, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4975, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4976, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4977, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4978, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4979, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4980, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4981, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4982, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4983, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4984, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4985, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4986, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4987, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4988, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4989, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4990, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4991, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4992, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4993, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4994, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4995, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4996, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4997, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4998, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4999, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5000, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5001, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5002, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5003, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5004, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5005, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5006, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5007, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5008, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5009, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5010, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5011, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5012, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5013, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5014, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5015, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5016, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5017, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5018, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5019, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5020, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5021, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5022, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5023, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5024, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5025, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 293, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 294, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 295, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 296, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 297, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 298, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 299, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 300, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 301, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 302, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 303, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 304, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 305, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 306, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 307, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 308, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 309, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 310, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 311, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 312, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 313, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 314, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 315, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 316, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 317, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 318, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 319, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 320, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 136, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 137, + "properties": { + "axis": "y" + } + }, + { + "id": 138, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5720, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5721, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 29, + "properties": { + "stage": "0" + } + }, + { + "id": 30, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:birch_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4366, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4367, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4368, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4369, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4370, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4371, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4372, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4373, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4374, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4375, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4376, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4377, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4378, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4379, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4380, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4381, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4382, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4383, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4384, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4385, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4386, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4387, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4388, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4389, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4390, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4391, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4392, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4393, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4394, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4395, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4396, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4397, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11033, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11034, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11035, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11036, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11037, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11038, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7746, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7747, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7748, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7749, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7750, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7752, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7754, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7756, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7757, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7758, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7766, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7767, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7768, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7769, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7770, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7772, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7773, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7774, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7776, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7778, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7786, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7787, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7788, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7789, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7790, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7792, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7793, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7794, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7796, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7797, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7798, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7806, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7807, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7808, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7809, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7810, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7812, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7813, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7814, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7816, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7818, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6090, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6091, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6092, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6093, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6094, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6095, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6096, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6097, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6098, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6099, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6100, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6101, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6102, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6103, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6104, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6105, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6106, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6107, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6108, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6109, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6110, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6111, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6112, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6113, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6114, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6115, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6116, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6117, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6118, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6119, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6120, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6121, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6122, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6123, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6124, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6125, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6126, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6127, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6128, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6129, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6130, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6131, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6132, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6133, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6134, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6135, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6136, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6137, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6138, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6139, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6140, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6141, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6142, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6143, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6144, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6145, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6146, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6147, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6148, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6149, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6150, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6151, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6152, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6153, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5554, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5555, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5556, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5557, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5558, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5559, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5560, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5561, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4778, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4779, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 195, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 196, + "properties": { + "axis": "y" + } + }, + { + "id": 197, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10858, + "properties": { + "rotation": "0" + } + }, + { + "id": 10859, + "properties": { + "rotation": "1" + } + }, + { + "id": 10860, + "properties": { + "rotation": "2" + } + }, + { + "id": 10861, + "properties": { + "rotation": "3" + } + }, + { + "id": 10862, + "properties": { + "rotation": "4" + } + }, + { + "id": 10863, + "properties": { + "rotation": "5" + } + }, + { + "id": 10864, + "properties": { + "rotation": "6" + } + }, + { + "id": 10865, + "properties": { + "rotation": "7" + } + }, + { + "id": 10866, + "properties": { + "rotation": "8" + } + }, + { + "id": 10867, + "properties": { + "rotation": "9" + } + }, + { + "id": 10868, + "properties": { + "rotation": "10" + } + }, + { + "id": 10869, + "properties": { + "rotation": "11" + } + }, + { + "id": 10870, + "properties": { + "rotation": "12" + } + }, + { + "id": 10871, + "properties": { + "rotation": "13" + } + }, + { + "id": 10872, + "properties": { + "rotation": "14" + } + }, + { + "id": 10873, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1928, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1929, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1930, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1931, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1932, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1933, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1934, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1935, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1936, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1937, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1938, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1939, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1940, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1941, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1942, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1943, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20840, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20841, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20842, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20843, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20844, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20845, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20846, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20847, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20848, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20849, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20850, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20851, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20852, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20853, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20854, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20855, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20888, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20889, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "states": [ + { + "default": true, + "id": 10602 + } + ] + }, + "minecraft:black_concrete": { + "states": [ + { + "default": true, + "id": 12602 + } + ] + }, + "minecraft:black_concrete_powder": { + "states": [ + { + "default": true, + "id": 12618 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12583, + "properties": { + "facing": "north" + } + }, + { + "id": 12584, + "properties": { + "facing": "south" + } + }, + { + "id": 12585, + "properties": { + "facing": "west" + } + }, + { + "id": 12586, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12517, + "properties": { + "facing": "north" + } + }, + { + "id": 12518, + "properties": { + "facing": "east" + } + }, + { + "id": 12519, + "properties": { + "facing": "south" + } + }, + { + "id": 12520, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12521, + "properties": { + "facing": "up" + } + }, + { + "id": 12522, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "states": [ + { + "default": true, + "id": 5961 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9712, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9713, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9714, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9715, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9716, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9717, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9718, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9719, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9720, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9721, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9722, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9723, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9724, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9725, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9726, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9727, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9728, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9729, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9730, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9731, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9732, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9733, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9734, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9735, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9736, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9737, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9738, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9739, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9740, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9741, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9742, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9743, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "states": [ + { + "default": true, + "id": 9231 + } + ] + }, + "minecraft:black_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10934, + "properties": { + "facing": "north" + } + }, + { + "id": 10935, + "properties": { + "facing": "south" + } + }, + { + "id": 10936, + "properties": { + "facing": "west" + } + }, + { + "id": 10937, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "states": [ + { + "default": true, + "id": 2062 + } + ] + }, + "minecraft:blackstone": { + "states": [ + { + "default": true, + "id": 19319 + } + ] + }, + "minecraft:blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19724, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19725, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19726, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19727, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19728, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19729, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19320, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19321, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19322, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19323, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19324, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19325, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19326, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19327, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19328, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19329, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19330, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19331, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19332, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19333, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19334, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19335, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19336, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19337, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19339, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19340, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19341, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19342, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19343, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19344, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19345, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19346, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19347, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19348, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19349, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19350, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19351, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19352, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19353, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19354, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19355, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19356, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19357, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19359, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19360, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19361, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19362, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19363, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19364, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19365, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19366, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19367, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19368, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19369, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19370, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19371, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19372, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19373, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19374, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19375, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19376, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19377, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19379, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19380, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19381, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19382, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19383, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19384, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19385, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19386, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19387, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19388, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19389, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19390, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19391, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19392, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19393, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19394, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19395, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19396, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19397, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19399, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19473, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19474, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19475, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19476, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19484, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19485, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19486, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19487, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19488, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19496, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19497, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19498, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19499, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19500, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19508, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19509, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19510, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19511, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19512, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19520, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19532, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19533, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19534, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19535, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19536, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19544, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19545, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19547, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19548, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19556, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19557, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19559, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19560, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19568, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19569, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19571, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19572, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19580, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19581, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19582, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19583, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19584, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19592, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19593, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19594, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19595, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19596, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19604, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19605, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19606, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19607, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19608, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18287, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18288, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18289, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18290, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18291, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18292, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18293, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18294, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10794, + "properties": { + "rotation": "0" + } + }, + { + "id": 10795, + "properties": { + "rotation": "1" + } + }, + { + "id": 10796, + "properties": { + "rotation": "2" + } + }, + { + "id": 10797, + "properties": { + "rotation": "3" + } + }, + { + "id": 10798, + "properties": { + "rotation": "4" + } + }, + { + "id": 10799, + "properties": { + "rotation": "5" + } + }, + { + "id": 10800, + "properties": { + "rotation": "6" + } + }, + { + "id": 10801, + "properties": { + "rotation": "7" + } + }, + { + "id": 10802, + "properties": { + "rotation": "8" + } + }, + { + "id": 10803, + "properties": { + "rotation": "9" + } + }, + { + "id": 10804, + "properties": { + "rotation": "10" + } + }, + { + "id": 10805, + "properties": { + "rotation": "11" + } + }, + { + "id": 10806, + "properties": { + "rotation": "12" + } + }, + { + "id": 10807, + "properties": { + "rotation": "13" + } + }, + { + "id": 10808, + "properties": { + "rotation": "14" + } + }, + { + "id": 10809, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1864, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1865, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1866, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1867, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1868, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1869, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1870, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1871, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1872, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1873, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1874, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1875, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1876, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1877, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1878, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1879, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20776, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20777, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20778, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20779, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20780, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20781, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20782, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20783, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20784, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20785, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20786, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20787, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20788, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20789, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20790, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20791, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20880, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20881, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "states": [ + { + "default": true, + "id": 10598 + } + ] + }, + "minecraft:blue_concrete": { + "states": [ + { + "default": true, + "id": 12598 + } + ] + }, + "minecraft:blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 12614 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12567, + "properties": { + "facing": "north" + } + }, + { + "id": 12568, + "properties": { + "facing": "south" + } + }, + { + "id": 12569, + "properties": { + "facing": "west" + } + }, + { + "id": 12570, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "states": [ + { + "default": true, + "id": 12800 + } + ] + }, + "minecraft:blue_orchid": { + "states": [ + { + "default": true, + "id": 2078 + } + ] + }, + "minecraft:blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12493, + "properties": { + "facing": "north" + } + }, + { + "id": 12494, + "properties": { + "facing": "east" + } + }, + { + "id": 12495, + "properties": { + "facing": "south" + } + }, + { + "id": 12496, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12497, + "properties": { + "facing": "up" + } + }, + { + "id": 12498, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "states": [ + { + "default": true, + "id": 5957 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9584, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9585, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9586, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9587, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9588, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9589, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9590, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9591, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9592, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9593, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9594, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9595, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9596, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9597, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9598, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9599, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9600, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9601, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9602, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9603, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9604, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9605, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9606, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9607, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9608, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9609, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9610, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9611, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9612, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9613, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9614, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9615, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "states": [ + { + "default": true, + "id": 9227 + } + ] + }, + "minecraft:blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10918, + "properties": { + "facing": "north" + } + }, + { + "id": 10919, + "properties": { + "facing": "south" + } + }, + { + "id": 10920, + "properties": { + "facing": "west" + } + }, + { + "id": 10921, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "states": [ + { + "default": true, + "id": 2058 + } + ] + }, + "minecraft:bone_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12405, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12406, + "properties": { + "axis": "y" + } + }, + { + "id": 12407, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "states": [ + { + "default": true, + "id": 2096 + } + ] + }, + "minecraft:brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12684, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12685, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "states": [ + { + "default": true, + "id": 12668 + } + ] + }, + "minecraft:brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12704, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12705, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12760, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12761, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12762, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12763, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12764, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12765, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12766, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12767, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7390, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7391, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7392, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 7393, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 7394, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7395, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7396, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 7397, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11117, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11118, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11119, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11120, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11121, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11122, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7029, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7030, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7031, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7032, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7033, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7034, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7035, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7036, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7037, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7038, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7039, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7040, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7041, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7042, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7043, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7044, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7045, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7049, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7050, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7051, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7052, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7053, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7054, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7055, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7056, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7057, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7058, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7059, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7060, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7061, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7062, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7063, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7064, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7065, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7069, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7070, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7071, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7072, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7073, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7074, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7075, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7076, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7077, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7078, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7079, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7080, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7081, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7082, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7083, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7084, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7085, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7089, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7090, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7091, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7092, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7093, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7094, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7095, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7096, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7097, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7098, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7100, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7101, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7102, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7103, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7104, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7105, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14021, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14022, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14023, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14024, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14025, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14026, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14027, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14028, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14029, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14030, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14033, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14034, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14035, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14036, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14037, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14038, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14039, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14040, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14041, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14042, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14045, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14046, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14047, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14048, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14049, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14050, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14051, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14052, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14053, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14054, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14057, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14058, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14059, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14060, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14061, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14062, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14063, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14064, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14065, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14066, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14069, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14070, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14071, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14072, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14073, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14074, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14075, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14076, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14077, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14078, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14081, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14082, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14083, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14084, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14085, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14086, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14087, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14088, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14089, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14090, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14093, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14094, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14095, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14096, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14097, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14098, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14099, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14100, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14101, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14102, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14105, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14106, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14107, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14108, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14109, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14110, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14111, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14112, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14113, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14114, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14121, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14122, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14123, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14124, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14125, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14126, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14129, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14130, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14131, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14132, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14133, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14134, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14135, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14136, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14137, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14138, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14141, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14142, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14143, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14144, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14145, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14146, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14147, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14148, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14149, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14150, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14153, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14154, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14155, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14156, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14157, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14158, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14159, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14160, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14161, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14162, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14165, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14166, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14167, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14168, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14169, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14170, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14171, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14172, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14173, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14174, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14177, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14178, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14179, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14180, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14181, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14182, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14183, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14184, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14185, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14186, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14189, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14190, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14191, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14192, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14193, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14194, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14195, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14196, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14197, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14198, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14201, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14202, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14203, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14204, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14205, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14206, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14207, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14208, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14209, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14210, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14213, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14214, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14215, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14216, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14217, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14218, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14219, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14220, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14221, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14222, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14229, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14230, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14231, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14232, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14233, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14234, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14237, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14238, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14239, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14240, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14241, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14242, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14243, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14244, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14245, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14246, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14249, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14250, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14251, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14252, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14253, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14254, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14255, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14256, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14257, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14258, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14265, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14266, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14267, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14268, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14269, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14270, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14273, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14274, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14275, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14276, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14277, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14278, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14279, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14280, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14281, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14282, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14285, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14286, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14287, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14288, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14289, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14290, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14291, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14292, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14293, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14294, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14301, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14302, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14303, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14304, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14305, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14306, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14309, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14310, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14311, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14312, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14313, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14314, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14315, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14316, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14317, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14318, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14321, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14325, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14326, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14327, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14328, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14329, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14330, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14337, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14338, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14339, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14340, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14341, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14342, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "states": [ + { + "default": true, + "id": 2093 + } + ] + }, + "minecraft:brown_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10810, + "properties": { + "rotation": "0" + } + }, + { + "id": 10811, + "properties": { + "rotation": "1" + } + }, + { + "id": 10812, + "properties": { + "rotation": "2" + } + }, + { + "id": 10813, + "properties": { + "rotation": "3" + } + }, + { + "id": 10814, + "properties": { + "rotation": "4" + } + }, + { + "id": 10815, + "properties": { + "rotation": "5" + } + }, + { + "id": 10816, + "properties": { + "rotation": "6" + } + }, + { + "id": 10817, + "properties": { + "rotation": "7" + } + }, + { + "id": 10818, + "properties": { + "rotation": "8" + } + }, + { + "id": 10819, + "properties": { + "rotation": "9" + } + }, + { + "id": 10820, + "properties": { + "rotation": "10" + } + }, + { + "id": 10821, + "properties": { + "rotation": "11" + } + }, + { + "id": 10822, + "properties": { + "rotation": "12" + } + }, + { + "id": 10823, + "properties": { + "rotation": "13" + } + }, + { + "id": 10824, + "properties": { + "rotation": "14" + } + }, + { + "id": 10825, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1880, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1881, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1882, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1883, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1884, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1885, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1886, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1887, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1888, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1889, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1890, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1891, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1892, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1893, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1894, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1895, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20792, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20793, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20794, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20795, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20796, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20797, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20798, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20799, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20800, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20801, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20802, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20803, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20804, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20805, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20806, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20807, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20882, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20883, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "states": [ + { + "default": true, + "id": 10599 + } + ] + }, + "minecraft:brown_concrete": { + "states": [ + { + "default": true, + "id": 12599 + } + ] + }, + "minecraft:brown_concrete_powder": { + "states": [ + { + "default": true, + "id": 12615 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12571, + "properties": { + "facing": "north" + } + }, + { + "id": 12572, + "properties": { + "facing": "south" + } + }, + { + "id": 12573, + "properties": { + "facing": "west" + } + }, + { + "id": 12574, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "states": [ + { + "default": true, + "id": 2089 + } + ] + }, + "minecraft:brown_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6550, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6551, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6552, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6553, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6554, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6555, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6556, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6557, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6558, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6559, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6560, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6561, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6562, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6563, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6564, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6565, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6566, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6567, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6568, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6569, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6570, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6571, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6572, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6573, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6574, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6575, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6576, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6577, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6578, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6579, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6580, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6581, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6582, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6583, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6584, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6585, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6586, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6587, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6588, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6589, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6590, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6591, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6592, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6593, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6594, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6595, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6596, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6597, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6598, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6599, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6600, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6601, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6602, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6603, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6604, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6605, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6606, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6607, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6608, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6609, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6610, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6611, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6612, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6613, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12499, + "properties": { + "facing": "north" + } + }, + { + "id": 12500, + "properties": { + "facing": "east" + } + }, + { + "id": 12501, + "properties": { + "facing": "south" + } + }, + { + "id": 12502, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12503, + "properties": { + "facing": "up" + } + }, + { + "id": 12504, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "states": [ + { + "default": true, + "id": 5958 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9616, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9617, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9618, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9619, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9620, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9621, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9622, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9623, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9624, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9625, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9626, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9627, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9628, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9629, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9630, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9631, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9632, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9633, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9634, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9635, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9636, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9637, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9638, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9639, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9640, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9641, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9642, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9643, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9644, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9645, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9646, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9647, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "states": [ + { + "default": true, + "id": 9228 + } + ] + }, + "minecraft:brown_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10922, + "properties": { + "facing": "north" + } + }, + { + "id": 10923, + "properties": { + "facing": "south" + } + }, + { + "id": 10924, + "properties": { + "facing": "west" + } + }, + { + "id": 10925, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "states": [ + { + "default": true, + "id": 2059 + } + ] + }, + "minecraft:bubble_column": { + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12819, + "properties": { + "drag": "true" + } + }, + { + "id": 12820, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12686, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12687, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "states": [ + { + "default": true, + "id": 12669 + } + ] + }, + "minecraft:bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12706, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12707, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12768, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12769, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12770, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12771, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12772, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12773, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12774, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12775, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "states": [ + { + "default": true, + "id": 20891 + } + ] + }, + "minecraft:cactus": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 5782, + "properties": { + "age": "0" + } + }, + { + "id": 5783, + "properties": { + "age": "1" + } + }, + { + "id": 5784, + "properties": { + "age": "2" + } + }, + { + "id": 5785, + "properties": { + "age": "3" + } + }, + { + "id": 5786, + "properties": { + "age": "4" + } + }, + { + "id": 5787, + "properties": { + "age": "5" + } + }, + { + "id": 5788, + "properties": { + "age": "6" + } + }, + { + "id": 5789, + "properties": { + "age": "7" + } + }, + { + "id": 5790, + "properties": { + "age": "8" + } + }, + { + "id": 5791, + "properties": { + "age": "9" + } + }, + { + "id": 5792, + "properties": { + "age": "10" + } + }, + { + "id": 5793, + "properties": { + "age": "11" + } + }, + { + "id": 5794, + "properties": { + "age": "12" + } + }, + { + "id": 5795, + "properties": { + "age": "13" + } + }, + { + "id": 5796, + "properties": { + "age": "14" + } + }, + { + "id": 5797, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cake": { + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 5875, + "properties": { + "bites": "0" + } + }, + { + "id": 5876, + "properties": { + "bites": "1" + } + }, + { + "id": 5877, + "properties": { + "bites": "2" + } + }, + { + "id": 5878, + "properties": { + "bites": "3" + } + }, + { + "id": 5879, + "properties": { + "bites": "4" + } + }, + { + "id": 5880, + "properties": { + "bites": "5" + } + }, + { + "id": 5881, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "states": [ + { + "default": true, + "id": 20941 + } + ] + }, + "minecraft:calibrated_sculk_sensor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21040, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21041, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21042, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21043, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21044, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21045, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21046, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21047, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21048, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21049, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21050, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21051, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21052, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21053, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21054, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21055, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21056, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21057, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21058, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21059, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21060, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21061, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21062, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21063, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21064, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21065, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21066, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21067, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21068, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21069, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21070, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21071, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21072, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21073, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21074, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21075, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21076, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21077, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21078, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21079, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21080, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21081, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21082, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21083, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21084, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21085, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21086, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21087, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21088, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21089, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21090, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21091, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21092, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21093, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21094, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21095, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21096, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21097, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21098, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21099, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21100, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21101, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21102, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21103, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21104, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21105, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21106, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21107, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21108, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21109, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21110, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21111, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21112, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21113, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21114, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21129, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21168, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21169, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21170, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21171, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21172, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21173, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21174, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21175, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21176, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21177, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21178, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21179, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21180, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21181, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21182, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21183, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21184, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21185, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21186, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21187, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21188, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21189, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21190, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21191, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21192, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21193, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21194, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21195, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21196, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21197, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21198, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21199, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21200, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21201, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21202, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21203, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21204, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21205, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21206, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21207, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21208, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21209, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21210, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21211, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21212, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21213, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21214, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21215, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21216, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21217, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21218, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21219, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21220, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21221, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21222, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21223, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21224, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21225, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21226, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21227, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21228, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21229, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21230, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21231, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21232, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21233, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21234, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21235, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21236, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21237, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21238, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21239, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21240, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21241, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21242, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21243, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21244, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21245, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21246, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21247, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21248, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21249, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21250, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21251, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21252, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21253, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21254, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21255, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21256, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21257, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21258, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21259, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21260, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21261, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21262, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21263, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21264, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21265, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21266, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21267, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21268, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21269, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21270, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21271, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21272, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21273, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21274, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21275, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21276, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21277, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21278, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21279, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21280, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21281, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21282, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21283, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21284, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21285, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21286, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21287, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21288, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21289, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21290, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21291, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21292, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21293, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21294, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21295, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21296, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21297, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21298, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21299, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21300, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21301, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21302, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21303, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21304, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21305, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21306, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21307, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21308, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21309, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21310, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21311, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21312, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21313, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21314, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21315, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21316, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21317, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21318, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21319, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21320, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21321, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21322, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21323, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21324, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21325, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21326, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21327, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21328, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21329, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21330, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21331, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21332, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21333, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21334, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21335, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21336, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21337, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21338, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21339, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21340, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21341, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21342, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21343, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21344, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21345, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21346, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21347, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21348, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21349, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21350, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21351, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21352, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21353, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21354, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21355, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21356, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21357, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21358, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21359, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21360, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21361, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21362, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21363, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21364, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21365, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21366, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21367, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21368, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21369, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21370, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21371, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21372, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21373, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21374, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21375, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21376, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21377, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21378, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21379, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21380, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21381, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21382, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21383, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21384, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21385, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21386, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21387, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21388, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21389, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21390, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21391, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21392, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21393, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21394, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21395, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21396, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21397, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21398, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21399, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21400, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21401, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21402, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21403, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21404, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21405, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21406, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21407, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21408, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21409, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21410, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21411, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21412, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21413, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21414, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21415, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21416, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21417, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21418, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21419, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21420, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21421, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21422, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21423, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18370, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18371, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18372, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18373, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18374, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18375, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18376, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18377, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18378, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18379, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18380, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18381, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18382, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18383, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18384, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18385, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18386, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18387, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18388, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18389, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18390, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18391, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18392, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18393, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18394, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18395, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18396, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18397, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18398, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18399, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18400, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18401, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20584, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20585, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20586, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20587, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20588, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20589, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20590, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20591, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20592, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20593, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20594, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20595, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20596, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20597, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20598, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20599, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20856, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20857, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8595, + "properties": { + "age": "0" + } + }, + { + "id": 8596, + "properties": { + "age": "1" + } + }, + { + "id": 8597, + "properties": { + "age": "2" + } + }, + { + "id": 8598, + "properties": { + "age": "3" + } + }, + { + "id": 8599, + "properties": { + "age": "4" + } + }, + { + "id": 8600, + "properties": { + "age": "5" + } + }, + { + "id": 8601, + "properties": { + "age": "6" + } + }, + { + "id": 8602, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "states": [ + { + "default": true, + "id": 18295 + } + ] + }, + "minecraft:carved_pumpkin": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5867, + "properties": { + "facing": "north" + } + }, + { + "id": 5868, + "properties": { + "facing": "south" + } + }, + { + "id": 5869, + "properties": { + "facing": "west" + } + }, + { + "id": 5870, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "states": [ + { + "default": true, + "id": 7398 + } + ] + }, + "minecraft:cave_air": { + "states": [ + { + "default": true, + "id": 12818 + } + ] + }, + "minecraft:cave_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22314, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 22315, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 22316, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 22317, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 22318, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 22319, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 22320, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 22321, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 22322, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 22323, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 22324, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 22325, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 22326, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 22327, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 22328, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 22329, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 22330, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 22331, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 22332, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 22333, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 22334, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 22335, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 22336, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 22337, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 22338, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 22339, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 22340, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 22341, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 22342, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 22343, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 22344, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 22345, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 22346, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 22347, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 22348, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 22349, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 22350, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 22351, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 22352, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 22353, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 22354, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 22355, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 22356, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 22357, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 22358, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 22359, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 22360, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 22361, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 22362, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 22363, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 22364, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 22365, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22366, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 22367, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain": { + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6774, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 6775, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 6776, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6777, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 6778, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 6779, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12386, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12387, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12388, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12389, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12390, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12391, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12392, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12393, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12394, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12395, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12396, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12397, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:cherry_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8731, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8732, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8733, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8734, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8735, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8736, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8737, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8738, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8739, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8740, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8741, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8742, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8743, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8744, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8745, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8746, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8747, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8748, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8749, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8750, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8751, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8752, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8753, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8754, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11937, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11938, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11939, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11940, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11941, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11942, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11943, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11944, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11945, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11946, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11947, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11948, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11949, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11950, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11951, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11952, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11953, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11954, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11955, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11956, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11957, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11958, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11959, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11960, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11961, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11962, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11963, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11964, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11965, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11966, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11967, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11968, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11969, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11970, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11971, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11972, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11973, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11974, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11975, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11976, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11977, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11978, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11979, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11980, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11981, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11982, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11983, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11984, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11985, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11986, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11987, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11988, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11989, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11990, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11991, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11992, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11993, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11994, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11995, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11996, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11997, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11998, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11999, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12000, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11553, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11554, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11555, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11556, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11557, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11558, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11559, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11560, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11561, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11562, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11563, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11564, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11565, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11566, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11569, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11570, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11571, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11572, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11573, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11574, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11575, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11576, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11577, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11578, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11579, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11580, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11581, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11584, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cherry_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11297, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11298, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11299, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11300, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11301, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11302, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11303, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11304, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11305, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11306, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11307, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11308, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11309, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11310, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11311, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11312, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11313, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11314, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11315, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11316, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11317, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11318, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11319, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11320, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11321, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11322, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11323, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11324, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11325, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11326, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11327, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11328, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5090, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5091, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5092, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5093, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5094, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5095, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5096, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5097, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5098, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5099, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5100, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5101, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5102, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5103, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5104, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5105, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5106, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5107, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5108, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5109, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5110, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5111, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5112, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5113, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5114, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5115, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5116, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5117, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5118, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5119, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5120, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5121, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5122, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5123, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5124, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5125, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5126, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5127, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5128, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5129, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5130, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5131, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5132, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5133, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5134, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5135, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5136, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5137, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5138, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5139, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5140, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5141, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5142, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5143, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5144, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5145, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5146, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5147, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5148, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5149, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5150, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5151, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5152, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5153, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 377, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 378, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 379, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 380, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 381, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 382, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 383, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 384, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 385, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 386, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 387, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 388, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 389, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 390, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 391, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 392, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 393, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 394, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 395, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 396, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 397, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 398, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 399, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 400, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 401, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 402, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 403, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 404, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:cherry_planks": { + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:cherry_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5726, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5727, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:cherry_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 35, + "properties": { + "stage": "0" + } + }, + { + "id": 36, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:cherry_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4430, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4431, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4432, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4433, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4434, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4435, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4436, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4437, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4438, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4439, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4440, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4441, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4442, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4443, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4444, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4445, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4446, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4447, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4448, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4449, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4450, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4451, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4452, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4453, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4454, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4455, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4456, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4457, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4458, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4459, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4460, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4461, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11051, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11052, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11053, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11054, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11055, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11056, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9824, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9825, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9826, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9827, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9828, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9829, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9830, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9831, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9832, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9833, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9834, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9835, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9836, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9837, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9838, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9839, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9840, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9841, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9844, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9845, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9846, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9847, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9848, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9849, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9850, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9851, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9852, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9853, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9854, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9855, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9856, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9857, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9858, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9859, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9860, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9861, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9864, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9865, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9866, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9867, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9868, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9869, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9870, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9871, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9872, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9873, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9874, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9875, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9876, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9877, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9878, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9879, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9880, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9881, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9884, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9888, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9889, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9890, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9891, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9892, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9893, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9894, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9895, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9896, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9897, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9898, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9899, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9900, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9901, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6282, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6283, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6284, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6285, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6286, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6287, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6288, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6289, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6290, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6291, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6292, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6293, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6294, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6295, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6296, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6297, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6298, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6299, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6300, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6301, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6302, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6303, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6304, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6305, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6306, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6307, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6308, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6309, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6310, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6311, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6312, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6313, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6314, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6315, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6316, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6317, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6318, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6319, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6320, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6321, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6322, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6323, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6324, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6325, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6326, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6327, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6328, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6329, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6330, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6331, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6332, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6333, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6334, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6335, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6336, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6337, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6338, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6339, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6340, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6341, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6342, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6343, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6344, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6345, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5570, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5571, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5572, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5573, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5574, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5575, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5576, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5577, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4794, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4795, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4796, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4797, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4798, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4799, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4800, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4801, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 204, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 205, + "properties": { + "axis": "y" + } + }, + { + "id": 206, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2954, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2955, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2956, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2957, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2958, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2959, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2960, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2961, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2962, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2963, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2964, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2965, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2966, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2967, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2968, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2969, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2970, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2971, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2972, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2973, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2974, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2975, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2976, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2977, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8971, + "properties": { + "facing": "north" + } + }, + { + "id": 8972, + "properties": { + "facing": "south" + } + }, + { + "id": 8973, + "properties": { + "facing": "west" + } + }, + { + "id": 8974, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_bookshelf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2097, + "properties": { + "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" + } + }, + { + "id": 2098, + "properties": { + "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" + } + }, + { + "id": 2099, + "properties": { + "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" + } + }, + { + "id": 2100, + "properties": { + "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" + } + }, + { + "id": 2101, + "properties": { + "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" + } + }, + { + "id": 2102, + "properties": { + "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" + } + }, + { + "id": 2103, + "properties": { + "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" + } + }, + { + "id": 2104, + "properties": { + "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" + } + }, + { + "id": 2105, + "properties": { + "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" + } + }, + { + "id": 2106, + "properties": { + "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" + } + }, + { + "id": 2107, + "properties": { + "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" + } + }, + { + "id": 2108, + "properties": { + "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" + } + }, + { + "id": 2109, + "properties": { + "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" + } + }, + { + "id": 2110, + "properties": { + "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" + } + }, + { + "id": 2111, + "properties": { + "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" + } + }, + { + "id": 2112, + "properties": { + "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" + } + }, + { + "id": 2113, + "properties": { + "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" + } + }, + { + "id": 2114, + "properties": { + "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" + } + }, + { + "id": 2115, + "properties": { + "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" + } + }, + { + "id": 2116, + "properties": { + "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" + } + }, + { + "id": 2117, + "properties": { + "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" + } + }, + { + "id": 2118, + "properties": { + "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" + } + }, + { + "id": 2119, + "properties": { + "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" + } + }, + { + "id": 2120, + "properties": { + "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" + } + }, + { + "id": 2121, + "properties": { + "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" + } + }, + { + "id": 2122, + "properties": { + "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" + } + }, + { + "id": 2123, + "properties": { + "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" + } + }, + { + "id": 2124, + "properties": { + "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" + } + }, + { + "id": 2125, + "properties": { + "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" + } + }, + { + "id": 2126, + "properties": { + "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" + } + }, + { + "id": 2127, + "properties": { + "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" + } + }, + { + "id": 2128, + "properties": { + "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" + } + }, + { + "id": 2129, + "properties": { + "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" + } + }, + { + "id": 2130, + "properties": { + "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" + } + }, + { + "id": 2131, + "properties": { + "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" + } + }, + { + "id": 2132, + "properties": { + "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" + } + }, + { + "id": 2133, + "properties": { + "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" + } + }, + { + "id": 2134, + "properties": { + "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" + } + }, + { + "id": 2135, + "properties": { + "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" + } + }, + { + "id": 2136, + "properties": { + "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" + } + }, + { + "id": 2137, + "properties": { + "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" + } + }, + { + "id": 2138, + "properties": { + "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" + } + }, + { + "id": 2139, + "properties": { + "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" + } + }, + { + "id": 2140, + "properties": { + "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" + } + }, + { + "id": 2141, + "properties": { + "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" + } + }, + { + "id": 2142, + "properties": { + "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" + } + }, + { + "id": 2143, + "properties": { + "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" + } + }, + { + "id": 2144, + "properties": { + "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" + } + }, + { + "id": 2145, + "properties": { + "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" + } + }, + { + "id": 2146, + "properties": { + "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" + } + }, + { + "id": 2147, + "properties": { + "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" + } + }, + { + "id": 2148, + "properties": { + "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" + } + }, + { + "id": 2149, + "properties": { + "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" + } + }, + { + "id": 2150, + "properties": { + "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" + } + }, + { + "id": 2151, + "properties": { + "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" + } + }, + { + "id": 2152, + "properties": { + "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" + } + }, + { + "id": 2153, + "properties": { + "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" + } + }, + { + "id": 2154, + "properties": { + "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" + } + }, + { + "id": 2155, + "properties": { + "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" + } + }, + { + "id": 2156, + "properties": { + "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" + } + }, + { + "id": 2157, + "properties": { + "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" + } + }, + { + "id": 2158, + "properties": { + "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" + } + }, + { + "id": 2159, + "properties": { + "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" + } + }, + { + "default": true, + "id": 2160, + "properties": { + "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" + } + }, + { + "id": 2161, + "properties": { + "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" + } + }, + { + "id": 2162, + "properties": { + "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" + } + }, + { + "id": 2163, + "properties": { + "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" + } + }, + { + "id": 2164, + "properties": { + "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" + } + }, + { + "id": 2165, + "properties": { + "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" + } + }, + { + "id": 2166, + "properties": { + "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" + } + }, + { + "id": 2167, + "properties": { + "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" + } + }, + { + "id": 2168, + "properties": { + "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" + } + }, + { + "id": 2169, + "properties": { + "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" + } + }, + { + "id": 2170, + "properties": { + "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" + } + }, + { + "id": 2171, + "properties": { + "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" + } + }, + { + "id": 2172, + "properties": { + "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" + } + }, + { + "id": 2173, + "properties": { + "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" + } + }, + { + "id": 2174, + "properties": { + "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" + } + }, + { + "id": 2175, + "properties": { + "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" + } + }, + { + "id": 2176, + "properties": { + "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" + } + }, + { + "id": 2177, + "properties": { + "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" + } + }, + { + "id": 2178, + "properties": { + "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" + } + }, + { + "id": 2179, + "properties": { + "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" + } + }, + { + "id": 2180, + "properties": { + "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" + } + }, + { + "id": 2181, + "properties": { + "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" + } + }, + { + "id": 2182, + "properties": { + "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" + } + }, + { + "id": 2183, + "properties": { + "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" + } + }, + { + "id": 2184, + "properties": { + "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" + } + }, + { + "id": 2185, + "properties": { + "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" + } + }, + { + "id": 2186, + "properties": { + "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" + } + }, + { + "id": 2187, + "properties": { + "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" + } + }, + { + "id": 2188, + "properties": { + "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" + } + }, + { + "id": 2189, + "properties": { + "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" + } + }, + { + "id": 2190, + "properties": { + "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" + } + }, + { + "id": 2191, + "properties": { + "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" + } + }, + { + "id": 2192, + "properties": { + "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" + } + }, + { + "id": 2193, + "properties": { + "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" + } + }, + { + "id": 2194, + "properties": { + "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" + } + }, + { + "id": 2195, + "properties": { + "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" + } + }, + { + "id": 2196, + "properties": { + "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" + } + }, + { + "id": 2197, + "properties": { + "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" + } + }, + { + "id": 2198, + "properties": { + "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" + } + }, + { + "id": 2199, + "properties": { + "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" + } + }, + { + "id": 2200, + "properties": { + "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" + } + }, + { + "id": 2201, + "properties": { + "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" + } + }, + { + "id": 2202, + "properties": { + "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" + } + }, + { + "id": 2203, + "properties": { + "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" + } + }, + { + "id": 2204, + "properties": { + "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" + } + }, + { + "id": 2205, + "properties": { + "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" + } + }, + { + "id": 2206, + "properties": { + "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" + } + }, + { + "id": 2207, + "properties": { + "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" + } + }, + { + "id": 2208, + "properties": { + "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" + } + }, + { + "id": 2209, + "properties": { + "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" + } + }, + { + "id": 2210, + "properties": { + "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" + } + }, + { + "id": 2211, + "properties": { + "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" + } + }, + { + "id": 2212, + "properties": { + "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" + } + }, + { + "id": 2213, + "properties": { + "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" + } + }, + { + "id": 2214, + "properties": { + "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" + } + }, + { + "id": 2215, + "properties": { + "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" + } + }, + { + "id": 2216, + "properties": { + "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" + } + }, + { + "id": 2217, + "properties": { + "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" + } + }, + { + "id": 2218, + "properties": { + "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" + } + }, + { + "id": 2219, + "properties": { + "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" + } + }, + { + "id": 2220, + "properties": { + "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" + } + }, + { + "id": 2221, + "properties": { + "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" + } + }, + { + "id": 2222, + "properties": { + "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" + } + }, + { + "id": 2223, + "properties": { + "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" + } + }, + { + "id": 2224, + "properties": { + "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" + } + }, + { + "id": 2225, + "properties": { + "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" + } + }, + { + "id": 2226, + "properties": { + "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" + } + }, + { + "id": 2227, + "properties": { + "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" + } + }, + { + "id": 2228, + "properties": { + "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" + } + }, + { + "id": 2229, + "properties": { + "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" + } + }, + { + "id": 2230, + "properties": { + "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" + } + }, + { + "id": 2231, + "properties": { + "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" + } + }, + { + "id": 2232, + "properties": { + "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" + } + }, + { + "id": 2233, + "properties": { + "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" + } + }, + { + "id": 2234, + "properties": { + "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" + } + }, + { + "id": 2235, + "properties": { + "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" + } + }, + { + "id": 2236, + "properties": { + "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" + } + }, + { + "id": 2237, + "properties": { + "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" + } + }, + { + "id": 2238, + "properties": { + "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" + } + }, + { + "id": 2239, + "properties": { + "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" + } + }, + { + "id": 2240, + "properties": { + "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" + } + }, + { + "id": 2241, + "properties": { + "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" + } + }, + { + "id": 2242, + "properties": { + "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" + } + }, + { + "id": 2243, + "properties": { + "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" + } + }, + { + "id": 2244, + "properties": { + "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" + } + }, + { + "id": 2245, + "properties": { + "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" + } + }, + { + "id": 2246, + "properties": { + "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" + } + }, + { + "id": 2247, + "properties": { + "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" + } + }, + { + "id": 2248, + "properties": { + "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" + } + }, + { + "id": 2249, + "properties": { + "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" + } + }, + { + "id": 2250, + "properties": { + "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" + } + }, + { + "id": 2251, + "properties": { + "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" + } + }, + { + "id": 2252, + "properties": { + "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" + } + }, + { + "id": 2253, + "properties": { + "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" + } + }, + { + "id": 2254, + "properties": { + "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" + } + }, + { + "id": 2255, + "properties": { + "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" + } + }, + { + "id": 2256, + "properties": { + "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" + } + }, + { + "id": 2257, + "properties": { + "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" + } + }, + { + "id": 2258, + "properties": { + "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" + } + }, + { + "id": 2259, + "properties": { + "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" + } + }, + { + "id": 2260, + "properties": { + "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" + } + }, + { + "id": 2261, + "properties": { + "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" + } + }, + { + "id": 2262, + "properties": { + "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" + } + }, + { + "id": 2263, + "properties": { + "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" + } + }, + { + "id": 2264, + "properties": { + "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" + } + }, + { + "id": 2265, + "properties": { + "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" + } + }, + { + "id": 2266, + "properties": { + "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" + } + }, + { + "id": 2267, + "properties": { + "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" + } + }, + { + "id": 2268, + "properties": { + "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" + } + }, + { + "id": 2269, + "properties": { + "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" + } + }, + { + "id": 2270, + "properties": { + "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" + } + }, + { + "id": 2271, + "properties": { + "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" + } + }, + { + "id": 2272, + "properties": { + "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" + } + }, + { + "id": 2273, + "properties": { + "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" + } + }, + { + "id": 2274, + "properties": { + "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" + } + }, + { + "id": 2275, + "properties": { + "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" + } + }, + { + "id": 2276, + "properties": { + "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" + } + }, + { + "id": 2277, + "properties": { + "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" + } + }, + { + "id": 2278, + "properties": { + "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" + } + }, + { + "id": 2279, + "properties": { + "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" + } + }, + { + "id": 2280, + "properties": { + "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" + } + }, + { + "id": 2281, + "properties": { + "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" + } + }, + { + "id": 2282, + "properties": { + "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" + } + }, + { + "id": 2283, + "properties": { + "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" + } + }, + { + "id": 2284, + "properties": { + "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" + } + }, + { + "id": 2285, + "properties": { + "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" + } + }, + { + "id": 2286, + "properties": { + "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" + } + }, + { + "id": 2287, + "properties": { + "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" + } + }, + { + "id": 2288, + "properties": { + "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" + } + }, + { + "id": 2289, + "properties": { + "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" + } + }, + { + "id": 2290, + "properties": { + "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" + } + }, + { + "id": 2291, + "properties": { + "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" + } + }, + { + "id": 2292, + "properties": { + "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" + } + }, + { + "id": 2293, + "properties": { + "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" + } + }, + { + "id": 2294, + "properties": { + "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" + } + }, + { + "id": 2295, + "properties": { + "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" + } + }, + { + "id": 2296, + "properties": { + "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" + } + }, + { + "id": 2297, + "properties": { + "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" + } + }, + { + "id": 2298, + "properties": { + "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" + } + }, + { + "id": 2299, + "properties": { + "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" + } + }, + { + "id": 2300, + "properties": { + "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" + } + }, + { + "id": 2301, + "properties": { + "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" + } + }, + { + "id": 2302, + "properties": { + "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" + } + }, + { + "id": 2303, + "properties": { + "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" + } + }, + { + "id": 2304, + "properties": { + "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" + } + }, + { + "id": 2305, + "properties": { + "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" + } + }, + { + "id": 2306, + "properties": { + "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" + } + }, + { + "id": 2307, + "properties": { + "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" + } + }, + { + "id": 2308, + "properties": { + "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" + } + }, + { + "id": 2309, + "properties": { + "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" + } + }, + { + "id": 2310, + "properties": { + "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" + } + }, + { + "id": 2311, + "properties": { + "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" + } + }, + { + "id": 2312, + "properties": { + "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" + } + }, + { + "id": 2313, + "properties": { + "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" + } + }, + { + "id": 2314, + "properties": { + "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" + } + }, + { + "id": 2315, + "properties": { + "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" + } + }, + { + "id": 2316, + "properties": { + "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" + } + }, + { + "id": 2317, + "properties": { + "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" + } + }, + { + "id": 2318, + "properties": { + "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" + } + }, + { + "id": 2319, + "properties": { + "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" + } + }, + { + "id": 2320, + "properties": { + "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" + } + }, + { + "id": 2321, + "properties": { + "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" + } + }, + { + "id": 2322, + "properties": { + "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" + } + }, + { + "id": 2323, + "properties": { + "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" + } + }, + { + "id": 2324, + "properties": { + "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" + } + }, + { + "id": 2325, + "properties": { + "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" + } + }, + { + "id": 2326, + "properties": { + "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" + } + }, + { + "id": 2327, + "properties": { + "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" + } + }, + { + "id": 2328, + "properties": { + "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" + } + }, + { + "id": 2329, + "properties": { + "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" + } + }, + { + "id": 2330, + "properties": { + "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" + } + }, + { + "id": 2331, + "properties": { + "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" + } + }, + { + "id": 2332, + "properties": { + "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" + } + }, + { + "id": 2333, + "properties": { + "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" + } + }, + { + "id": 2334, + "properties": { + "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" + } + }, + { + "id": 2335, + "properties": { + "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" + } + }, + { + "id": 2336, + "properties": { + "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" + } + }, + { + "id": 2337, + "properties": { + "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" + } + }, + { + "id": 2338, + "properties": { + "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" + } + }, + { + "id": 2339, + "properties": { + "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" + } + }, + { + "id": 2340, + "properties": { + "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" + } + }, + { + "id": 2341, + "properties": { + "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" + } + }, + { + "id": 2342, + "properties": { + "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" + } + }, + { + "id": 2343, + "properties": { + "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" + } + }, + { + "id": 2344, + "properties": { + "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" + } + }, + { + "id": 2345, + "properties": { + "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" + } + }, + { + "id": 2346, + "properties": { + "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" + } + }, + { + "id": 2347, + "properties": { + "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" + } + }, + { + "id": 2348, + "properties": { + "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" + } + }, + { + "id": 2349, + "properties": { + "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" + } + }, + { + "id": 2350, + "properties": { + "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" + } + }, + { + "id": 2351, + "properties": { + "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" + } + }, + { + "id": 2352, + "properties": { + "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_deepslate": { + "states": [ + { + "default": true, + "id": 24096 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "states": [ + { + "default": true, + "id": 20581 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "states": [ + { + "default": true, + "id": 19733 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "states": [ + { + "default": true, + "id": 9096 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "states": [ + { + "default": true, + "id": 10939 + } + ] + }, + "minecraft:chiseled_sandstone": { + "states": [ + { + "default": true, + "id": 536 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 6541 + } + ] + }, + "minecraft:chorus_flower": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 12263, + "properties": { + "age": "0" + } + }, + { + "id": 12264, + "properties": { + "age": "1" + } + }, + { + "id": 12265, + "properties": { + "age": "2" + } + }, + { + "id": 12266, + "properties": { + "age": "3" + } + }, + { + "id": 12267, + "properties": { + "age": "4" + } + }, + { + "id": 12268, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12199, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12200, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12201, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12202, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12203, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12204, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12205, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12206, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12207, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12208, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12209, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12210, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12211, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12212, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12213, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12214, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12215, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12216, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12217, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12218, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12219, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12220, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12221, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12222, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12223, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12224, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12225, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12226, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12227, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12228, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12229, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12230, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12231, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12232, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12233, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12234, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12235, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12236, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12237, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12238, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12239, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12240, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12241, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12242, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12243, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12244, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12245, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12246, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12247, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12248, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12249, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12250, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12251, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12252, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12253, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12254, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12255, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12256, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12257, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12258, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12259, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12260, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12261, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 12262, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "states": [ + { + "default": true, + "id": 5798 + } + ] + }, + "minecraft:coal_block": { + "states": [ + { + "default": true, + "id": 10604 + } + ] + }, + "minecraft:coal_ore": { + "states": [ + { + "default": true, + "id": 127 + } + ] + }, + "minecraft:coarse_dirt": { + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "states": [ + { + "default": true, + "id": 22452 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22533, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22534, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22535, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22536, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22537, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22538, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22453, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22454, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22455, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22456, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22457, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22458, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22459, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22460, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22461, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22462, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22463, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22464, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22465, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22466, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22467, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22468, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22473, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22474, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22475, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22476, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22477, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22478, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22479, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22480, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22481, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22482, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22483, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22484, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22485, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22486, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22487, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22488, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22493, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22494, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22495, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22496, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22497, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22498, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22499, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22500, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22501, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22502, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22503, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22504, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22505, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22506, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22507, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22508, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22513, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22514, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22515, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22516, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22517, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22518, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22519, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22520, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22521, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22522, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22523, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22524, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22525, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 22539, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22540, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22541, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 22542, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22543, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22544, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22545, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22546, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22547, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22548, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22551, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22552, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22553, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22554, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22555, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22556, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22557, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22558, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22559, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22560, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22563, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22564, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22565, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22566, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22567, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22568, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22569, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22570, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22571, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22572, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22575, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22576, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22577, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22578, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22579, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22580, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22581, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22582, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22583, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22584, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22587, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22588, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22589, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22590, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22591, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22592, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22593, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22594, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22595, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22596, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22599, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22600, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22601, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22602, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22603, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22604, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22605, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22606, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22607, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22608, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22611, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22612, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22613, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22614, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22615, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22616, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22617, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22618, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22619, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22620, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22621, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22622, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22623, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22624, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22625, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22626, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22627, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22628, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22629, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22630, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22631, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22632, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22633, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22634, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22635, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22636, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22637, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22638, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22639, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22640, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22641, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22642, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22643, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22644, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22645, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22646, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22647, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22648, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22649, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22650, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22651, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22652, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22653, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22654, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22655, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22656, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22657, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22658, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22659, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22660, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22661, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22662, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22663, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22664, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22665, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22666, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22667, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22668, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22669, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22670, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22671, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22672, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22673, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22674, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22675, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22676, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22677, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22678, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22679, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22680, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22681, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22682, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22683, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22684, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22685, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22686, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22687, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22688, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22689, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22690, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22691, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22692, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22693, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22694, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22695, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22696, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22697, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22698, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22699, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22700, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22701, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22702, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22703, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22704, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22705, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22706, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22707, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22708, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22709, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22710, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22711, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22712, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22713, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22714, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22715, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22716, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22717, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22718, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22719, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22720, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22721, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22722, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22723, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22724, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22725, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22726, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22727, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22728, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22729, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22730, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22731, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22732, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22733, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22734, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22735, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22736, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22737, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22738, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22739, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22740, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22741, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22742, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22743, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22744, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22745, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22746, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22747, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22748, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22749, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22750, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22751, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22752, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22753, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22754, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22755, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22756, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22757, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22758, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22759, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22760, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22761, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22762, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22763, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22764, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22767, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22768, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22769, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22770, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22771, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22772, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22773, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22774, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22775, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22776, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22779, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22780, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22781, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22782, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22783, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22784, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22785, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22786, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22787, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22788, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22791, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22792, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22793, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22794, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22795, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22796, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22797, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22798, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22799, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22800, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22803, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22804, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22805, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22806, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22807, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22808, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22809, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22810, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22811, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22812, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22815, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22816, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22817, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22818, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22819, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22820, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22821, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22822, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22823, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22824, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22827, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22828, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22829, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22830, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22831, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22832, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22833, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22834, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22835, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22836, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22839, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22840, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22841, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22842, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22843, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22844, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22845, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22846, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22847, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22848, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22851, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22852, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22853, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22854, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22855, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22856, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22857, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22858, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22859, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22860, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11111, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11112, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11113, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11114, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11115, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11116, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4683, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4685, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4686, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4687, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4689, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4690, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4691, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4702, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4703, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4705, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4706, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4707, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4709, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4710, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4711, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 7919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 7922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7924, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7925, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7926, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7927, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7928, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7929, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7930, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7936, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7937, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7938, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7939, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7940, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7941, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7942, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7948, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7949, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7950, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7951, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7952, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7953, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7954, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7960, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7961, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7962, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7963, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7964, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7965, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7966, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7972, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7973, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7974, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7975, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7976, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7977, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7978, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7984, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7985, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7986, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7987, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7988, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7989, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7990, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7996, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7997, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7998, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7999, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8000, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8001, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8002, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8008, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8009, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8010, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8011, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8012, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8013, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8014, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8020, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8021, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8022, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8023, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8024, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8025, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8026, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8032, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8033, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8034, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8035, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8036, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8037, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8038, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8044, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8045, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8046, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8047, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8048, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8049, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8050, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8056, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8057, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8058, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8059, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8060, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8061, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8062, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8068, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8069, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8070, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8071, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8072, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8073, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8074, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8080, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8081, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8082, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8083, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8084, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8085, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8086, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8092, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8093, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8094, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8095, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8096, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8097, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8098, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8104, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8105, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8106, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8107, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8108, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8109, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8110, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8116, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8117, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8118, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8119, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8120, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8121, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8122, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8128, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8129, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8130, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8131, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8132, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8133, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8134, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8140, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8141, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8142, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8143, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8144, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8145, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8146, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8152, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8153, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8154, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8155, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8156, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8157, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8158, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8164, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8165, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8166, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8167, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8168, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8169, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8170, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8176, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8177, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8178, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8179, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8180, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8181, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8182, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8188, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8189, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8190, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8191, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8192, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8193, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8194, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8200, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8201, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8202, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8203, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8204, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8205, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8206, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8212, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8213, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8214, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8215, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8216, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8217, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8218, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8224, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8225, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8226, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8227, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8228, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8229, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8230, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8236, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8237, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8238, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8239, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8240, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8241, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8242, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "states": [ + { + "default": true, + "id": 2004 + } + ] + }, + "minecraft:cocoa": { + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7419, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 7420, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 7421, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 7422, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 7423, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 7424, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 7425, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 7426, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 7427, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 7428, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 7429, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 7430, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 7906, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 7907, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 7908, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 7909, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 7910, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 7911, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 7912, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 7913, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 7914, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 7915, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 7916, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 7917, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9035, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 9036, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9037, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9038, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9039, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9040, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9041, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9042, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9043, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9044, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9045, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9046, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9047, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9048, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9049, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9050, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 19231, + "properties": { + "level": "0" + } + }, + { + "id": 19232, + "properties": { + "level": "1" + } + }, + { + "id": 19233, + "properties": { + "level": "2" + } + }, + { + "id": 19234, + "properties": { + "level": "3" + } + }, + { + "id": 19235, + "properties": { + "level": "4" + } + }, + { + "id": 19236, + "properties": { + "level": "5" + } + }, + { + "id": 19237, + "properties": { + "level": "6" + } + }, + { + "id": 19238, + "properties": { + "level": "7" + } + }, + { + "id": 19239, + "properties": { + "level": "8" + } + } + ] + }, + "minecraft:conduit": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12801, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12802, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_block": { + "states": [ + { + "default": true, + "id": 21566 + } + ] + }, + "minecraft:copper_ore": { + "states": [ + { + "default": true, + "id": 21567 + } + ] + }, + "minecraft:cornflower": { + "states": [ + { + "default": true, + "id": 2086 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "states": [ + { + "default": true, + "id": 24097 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "states": [ + { + "default": true, + "id": 24098 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "states": [ + { + "default": true, + "id": 20582 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 19732 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 6540 + } + ] + }, + "minecraft:crafting_table": { + "states": [ + { + "default": true, + "id": 4277 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8907, + "properties": { + "rotation": "0" + } + }, + { + "id": 8908, + "properties": { + "rotation": "1" + } + }, + { + "id": 8909, + "properties": { + "rotation": "2" + } + }, + { + "id": 8910, + "properties": { + "rotation": "3" + } + }, + { + "id": 8911, + "properties": { + "rotation": "4" + } + }, + { + "id": 8912, + "properties": { + "rotation": "5" + } + }, + { + "id": 8913, + "properties": { + "rotation": "6" + } + }, + { + "id": 8914, + "properties": { + "rotation": "7" + } + }, + { + "id": 8915, + "properties": { + "rotation": "8" + } + }, + { + "id": 8916, + "properties": { + "rotation": "9" + } + }, + { + "id": 8917, + "properties": { + "rotation": "10" + } + }, + { + "id": 8918, + "properties": { + "rotation": "11" + } + }, + { + "id": 8919, + "properties": { + "rotation": "12" + } + }, + { + "id": 8920, + "properties": { + "rotation": "13" + } + }, + { + "id": 8921, + "properties": { + "rotation": "14" + } + }, + { + "id": 8922, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8923, + "properties": { + "facing": "north" + } + }, + { + "id": 8924, + "properties": { + "facing": "south" + } + }, + { + "id": 8925, + "properties": { + "facing": "west" + } + }, + { + "id": 8926, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:crimson_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18959, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18960, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18961, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18962, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18963, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18964, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18965, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18966, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18967, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 18968, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18969, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18970, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18971, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18972, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18973, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18974, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18975, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18976, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18977, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18978, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18979, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18980, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18981, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18982, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19007, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19008, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19009, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19010, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19011, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19012, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19013, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19014, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19015, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19016, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19017, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 19018, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19019, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19020, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19021, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19022, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19023, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19024, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19025, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19026, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19027, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19028, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19029, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19030, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19031, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19032, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19033, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19034, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19035, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19036, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19037, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19038, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19039, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19040, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19041, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19042, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19043, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19044, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19045, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19046, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19047, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19048, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19049, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19050, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19051, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19052, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19053, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19054, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19055, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19056, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19057, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19058, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19059, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19060, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19061, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19062, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19063, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19064, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19065, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19066, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19067, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19068, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19069, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19070, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18543, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18544, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18545, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18546, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18547, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18548, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18549, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18550, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18551, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18552, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18553, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18554, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18555, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18556, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18557, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18558, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18559, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18560, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18561, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18562, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18563, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18564, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18565, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18566, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18567, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18568, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18569, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18570, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18571, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18572, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18573, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18574, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18735, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18736, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18737, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18738, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18739, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18740, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18741, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18742, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18743, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18744, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18745, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18746, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18747, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18748, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18749, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18750, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18751, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18752, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18753, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18754, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18755, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18756, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18757, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18758, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18759, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18760, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18761, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18762, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18763, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18764, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18765, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18766, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "states": [ + { + "default": true, + "id": 18468 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5282, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5283, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5284, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5285, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5286, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5287, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5288, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5289, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5290, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5291, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5292, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5293, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5294, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5295, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5296, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5297, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5298, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5299, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5300, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5301, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5302, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5303, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5304, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5305, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5306, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5307, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5308, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5309, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5310, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5311, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5312, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5313, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5314, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5315, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5316, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5317, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5318, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5319, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5320, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5321, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5322, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5323, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5324, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5325, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5326, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5327, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5328, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5329, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5330, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5331, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5332, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5333, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5334, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5335, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5336, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5337, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5338, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5339, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5340, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5341, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5342, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5343, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5344, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5345, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18461, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18462, + "properties": { + "axis": "y" + } + }, + { + "id": 18463, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "states": [ + { + "default": true, + "id": 18467 + } + ] + }, + "minecraft:crimson_planks": { + "states": [ + { + "default": true, + "id": 18525 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18539, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 18540, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "states": [ + { + "default": true, + "id": 18524 + } + ] + }, + "minecraft:crimson_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19135, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19136, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 19137, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 19138, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 19139, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 19140, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 19141, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 19142, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 19143, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 19144, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 19145, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 19146, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 19147, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 19148, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19149, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19150, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19151, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19152, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19153, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19154, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19155, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19156, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19157, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19158, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19159, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19160, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19161, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19162, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19163, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19164, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19165, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19166, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18527, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 18528, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 18529, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18530, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18531, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18532, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18799, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18800, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18801, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18802, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18803, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18804, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18805, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18806, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18807, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18808, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18810, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18811, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18812, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18813, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18814, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18815, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18816, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18817, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18818, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18819, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18820, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18821, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18822, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18823, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18824, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18825, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18826, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18827, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18828, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18830, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18831, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18832, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18833, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18834, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18835, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18836, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18837, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18838, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18839, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18840, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18841, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18842, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18843, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18844, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18845, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18846, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18847, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18848, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18849, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18850, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18851, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18852, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18853, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18854, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18855, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18856, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18857, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18858, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18859, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18860, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18861, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18862, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18863, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18864, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18865, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18866, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18867, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18868, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18869, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18870, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18871, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18872, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18873, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18874, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18875, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18876, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18877, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18878, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18455, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18456, + "properties": { + "axis": "y" + } + }, + { + "id": 18457, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18607, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18608, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18609, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18610, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18611, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18612, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18613, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18614, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18615, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18616, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18617, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18618, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18619, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18620, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18621, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18622, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18623, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18624, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18625, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18626, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18627, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18628, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18629, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18630, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18631, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18632, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18633, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18634, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18635, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18636, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18637, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18638, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18639, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18640, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18641, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18642, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18643, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18644, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18645, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18646, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18647, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18648, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18649, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18650, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18651, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18652, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18653, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18654, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18655, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18656, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18657, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18658, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18659, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18660, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18661, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18662, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18663, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18664, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18665, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18666, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18667, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18668, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18669, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18670, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5602, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5603, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5604, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5605, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5606, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5607, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5608, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5609, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19199, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19200, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19201, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19202, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19203, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19204, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19205, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19206, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "states": [ + { + "default": true, + "id": 19308 + } + ] + }, + "minecraft:cut_copper": { + "states": [ + { + "default": true, + "id": 21572 + } + ] + }, + "minecraft:cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21911, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21912, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21913, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21914, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21915, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21916, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21813, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21814, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21815, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21816, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21817, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21818, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21819, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21820, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21821, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21822, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21823, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21824, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21825, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21826, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21827, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21828, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21829, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21830, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21831, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21832, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21833, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21834, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21835, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21836, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21837, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21838, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21839, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21840, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21841, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21842, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21843, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21844, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21845, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21846, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21847, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21848, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21849, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21850, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21851, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21852, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21853, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21854, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21855, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21856, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21857, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21858, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21859, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21860, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21861, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21862, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21863, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21864, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21865, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21866, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21867, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21868, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21869, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21870, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21871, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21872, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21873, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21874, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21875, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21876, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21877, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21878, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21879, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21880, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21881, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21882, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21883, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21884, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21885, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21886, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21887, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21888, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21889, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21890, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21891, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21892, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "default": true, + "id": 10940 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11153, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11154, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11155, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11156, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11157, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11158, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "default": true, + "id": 537 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11099, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11100, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11101, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11102, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11103, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11104, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10762, + "properties": { + "rotation": "0" + } + }, + { + "id": 10763, + "properties": { + "rotation": "1" + } + }, + { + "id": 10764, + "properties": { + "rotation": "2" + } + }, + { + "id": 10765, + "properties": { + "rotation": "3" + } + }, + { + "id": 10766, + "properties": { + "rotation": "4" + } + }, + { + "id": 10767, + "properties": { + "rotation": "5" + } + }, + { + "id": 10768, + "properties": { + "rotation": "6" + } + }, + { + "id": 10769, + "properties": { + "rotation": "7" + } + }, + { + "id": 10770, + "properties": { + "rotation": "8" + } + }, + { + "id": 10771, + "properties": { + "rotation": "9" + } + }, + { + "id": 10772, + "properties": { + "rotation": "10" + } + }, + { + "id": 10773, + "properties": { + "rotation": "11" + } + }, + { + "id": 10774, + "properties": { + "rotation": "12" + } + }, + { + "id": 10775, + "properties": { + "rotation": "13" + } + }, + { + "id": 10776, + "properties": { + "rotation": "14" + } + }, + { + "id": 10777, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1832, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1833, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1834, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1835, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1836, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1837, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1838, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1839, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1840, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1841, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1842, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1843, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1844, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1845, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1846, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1847, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20744, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20745, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20746, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20747, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20748, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20749, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20750, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20751, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20752, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20753, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20754, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20755, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20756, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20757, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20758, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20759, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20876, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20877, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ + { + "default": true, + "id": 10596 + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ + { + "default": true, + "id": 12596 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ + { + "default": true, + "id": 12612 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12559, + "properties": { + "facing": "north" + } + }, + { + "id": 12560, + "properties": { + "facing": "south" + } + }, + { + "id": 12561, + "properties": { + "facing": "west" + } + }, + { + "id": 12562, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12481, + "properties": { + "facing": "north" + } + }, + { + "id": 12482, + "properties": { + "facing": "east" + } + }, + { + "id": 12483, + "properties": { + "facing": "south" + } + }, + { + "id": 12484, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12485, + "properties": { + "facing": "up" + } + }, + { + "id": 12486, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ + { + "default": true, + "id": 5955 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9520, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9521, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9522, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9523, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9524, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9525, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9526, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9527, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9528, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9529, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9530, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9531, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9532, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9533, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9534, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9535, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9536, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9537, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9538, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9539, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9540, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9541, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9542, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9543, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9544, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9545, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9546, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9547, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9548, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9549, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9550, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9551, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ + { + "default": true, + "id": 9225 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10910, + "properties": { + "facing": "north" + } + }, + { + "id": 10911, + "properties": { + "facing": "south" + } + }, + { + "id": 10912, + "properties": { + "facing": "west" + } + }, + { + "id": 10913, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "states": [ + { + "default": true, + "id": 2056 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8975, + "properties": { + "facing": "north" + } + }, + { + "id": 8976, + "properties": { + "facing": "south" + } + }, + { + "id": 8977, + "properties": { + "facing": "west" + } + }, + { + "id": 8978, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "states": [ + { + "default": true, + "id": 2075 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8755, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8756, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8757, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8758, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8759, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8760, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8761, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8762, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8763, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8764, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8765, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8766, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8767, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8768, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8769, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8770, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8771, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8772, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8773, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8774, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8775, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8776, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8777, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8778, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12001, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12002, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12003, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12004, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12005, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12006, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12007, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12008, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12009, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12010, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12011, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12012, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12013, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12014, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12015, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12016, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12017, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12018, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12019, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12020, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12021, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12022, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12023, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12024, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12025, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12026, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12027, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12028, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12029, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12030, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12031, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12032, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12033, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12034, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12035, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12036, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12037, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12038, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12039, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12040, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12041, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12042, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12043, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12044, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12045, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12046, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12047, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12048, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12049, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12050, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12051, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12052, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12053, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12054, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12055, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12056, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12057, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12058, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12059, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12060, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12061, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12062, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12063, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12064, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11585, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11586, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11587, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11588, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11589, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11590, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11591, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11592, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11593, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11594, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11595, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11596, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11597, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11598, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11599, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11600, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11601, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11602, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11603, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11604, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11605, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11606, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11607, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11608, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11609, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11610, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11611, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11612, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11613, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11614, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11615, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11616, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11329, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11330, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11331, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11332, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11333, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11334, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11335, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11336, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11337, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11338, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11339, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11340, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11341, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11342, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11343, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11344, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11345, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11346, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11347, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11348, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11349, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11350, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11351, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11352, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11353, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11354, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11355, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11356, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11357, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11358, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11359, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11360, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5219, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5220, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5221, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5222, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5223, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5224, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5225, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5226, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5227, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5228, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5229, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5230, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5231, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5232, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5233, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5234, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5235, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5236, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5237, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5238, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5239, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5240, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5241, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5242, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5243, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5244, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5245, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5246, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5247, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5248, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5249, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5250, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5251, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5252, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5253, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5254, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5255, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5256, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5257, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5258, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5259, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5260, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5261, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5262, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5263, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5264, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5265, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5266, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5267, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5268, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5269, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5270, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5271, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5272, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5273, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5274, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5275, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5276, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5277, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5278, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5279, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5280, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5281, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 405, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 406, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 407, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 408, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 409, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 410, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 411, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 412, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 413, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 414, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 415, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 416, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 417, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 418, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 419, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 420, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 421, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 422, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 423, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 424, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 425, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 426, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 427, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 428, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 429, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 430, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 431, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 432, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5728, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5729, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4494, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4495, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4496, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4497, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4498, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4499, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4500, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4501, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4502, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4503, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4504, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4505, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4506, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4507, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4508, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4509, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4510, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4511, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4512, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4513, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4514, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4515, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4516, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4517, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4518, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4519, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4520, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4521, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4522, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4523, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4524, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4525, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11057, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11058, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11059, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11060, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11061, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11062, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9904, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9905, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9906, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9907, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9908, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9909, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9910, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9911, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9912, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9913, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9914, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9915, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9916, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9917, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9924, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9925, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9926, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9927, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9928, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9929, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9930, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9931, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9932, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9933, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9934, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9935, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9936, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9937, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9947, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9948, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9949, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9950, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9951, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9952, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9953, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9954, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9955, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9956, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9957, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9964, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9965, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9966, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9967, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9968, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9969, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9970, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9971, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9972, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9973, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9974, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9975, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9976, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9977, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6346, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6347, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6348, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6349, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6350, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6351, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6352, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6353, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6354, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6355, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6356, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6357, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6358, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6359, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6360, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6361, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6362, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6363, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6364, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6365, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6366, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6367, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6368, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6369, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6370, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6371, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6372, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6373, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6374, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6375, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6376, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6377, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6378, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6379, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6380, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6381, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6382, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6383, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6384, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6385, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6386, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6387, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6388, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6389, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6390, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6391, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6392, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6393, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6394, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6395, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6396, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6397, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6398, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6399, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6400, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6401, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6402, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6403, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6404, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6405, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6406, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6407, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6408, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6409, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5586, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5587, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5588, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5589, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5590, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5591, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5592, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5593, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4810, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4811, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4812, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4813, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4814, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4815, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4816, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4817, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 207, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 208, + "properties": { + "axis": "y" + } + }, + { + "id": 209, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "states": [ + { + "default": true, + "id": 10324 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10577, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10578, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10579, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10580, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10581, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10582, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10485, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10486, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10487, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10488, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10489, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10490, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10491, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10492, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10493, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10494, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10495, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10496, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10497, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10498, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10499, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10500, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10501, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10502, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10503, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10504, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10505, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10506, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10507, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10508, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10509, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10510, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10511, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10512, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10513, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10514, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10515, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10516, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10517, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10518, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10519, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10520, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10521, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10522, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10523, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10524, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10525, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10526, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10527, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10528, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10529, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10530, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10531, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10532, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10533, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10534, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10535, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10536, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10537, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10538, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10539, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10540, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10541, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10542, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10543, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10544, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10545, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10546, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10547, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10548, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10549, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10550, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10551, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10552, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10553, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10554, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10555, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10556, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10557, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10558, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10559, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10560, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10561, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10562, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10563, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10564, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9051, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 9052, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 9053, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 9054, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 9055, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 9056, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 9057, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 9058, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 9059, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 9060, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 9061, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 9062, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 9063, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 9064, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 9065, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 9066, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 9067, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 9068, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 9069, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 9070, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 9071, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 9072, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 9073, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 9074, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 9075, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 9076, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 9077, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 9078, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 9079, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 9080, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 9081, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 9082, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12674, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12675, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ + { + "default": true, + "id": 12663 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12694, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12695, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12720, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12721, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12722, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12723, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12724, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12725, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12726, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12727, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12676, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12677, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ + { + "default": true, + "id": 12664 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12696, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12697, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12728, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12729, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12730, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12731, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12732, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12733, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12734, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12735, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "states": [ + { + "default": true, + "id": 2007 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12678, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12679, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ + { + "default": true, + "id": 12665 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12698, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12699, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12736, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12737, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12738, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12739, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12740, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12741, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12742, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12743, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12680, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12681, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ + { + "default": true, + "id": 12666 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12700, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12701, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12744, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12745, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12746, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12747, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12748, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12749, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12750, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12751, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12672, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12673, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ + { + "default": true, + "id": 12662 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12692, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12693, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12712, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12713, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12714, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12715, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12716, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12717, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12718, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12719, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24119, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 24120, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 24121, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 24122, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 24123, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 24124, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 24125, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 24126, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 24127, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24128, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 24129, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 24130, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 24131, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 24132, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 24133, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 24134, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 22449, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 22450, + "properties": { + "axis": "y" + } + }, + { + "id": 22451, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23766, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23767, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23768, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23769, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23770, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23771, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23686, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23687, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23688, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23689, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23690, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23691, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23692, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23693, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23694, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23695, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23702, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23703, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23704, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23705, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23706, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23707, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23708, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23709, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23710, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23711, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23712, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23713, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23714, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23715, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23722, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23723, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23724, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23725, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23726, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23727, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23728, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23729, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23730, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23731, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23732, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23733, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23734, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23735, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23742, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23743, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23744, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23745, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23746, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23747, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23748, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23749, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23750, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23751, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23752, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23753, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23754, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23755, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23762, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23763, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23764, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23765, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23772, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23773, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23774, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23775, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23776, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23777, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23778, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23779, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23784, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23785, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23786, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23787, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23788, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23789, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23790, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23791, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23796, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23797, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23798, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23799, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23800, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23801, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23802, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23803, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23808, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23809, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23810, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23811, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23812, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23813, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23814, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23815, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23820, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23821, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23822, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23823, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23824, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23825, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23826, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23827, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23832, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23833, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23834, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23835, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23836, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23837, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23838, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23839, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23844, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23845, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23846, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23847, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23848, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23849, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23850, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23851, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23853, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23854, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23855, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23856, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23857, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23858, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23859, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23860, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23861, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23862, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23863, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23865, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23866, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23867, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23868, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23869, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23870, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23871, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23872, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23873, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23874, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23880, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23881, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23882, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23883, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23884, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23885, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23886, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23887, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23889, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23890, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23891, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23892, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23893, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23894, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23895, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23896, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23897, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23898, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23899, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23901, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23902, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23903, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23904, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23905, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23906, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23907, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23908, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23909, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23910, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23911, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23913, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23914, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23915, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23916, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23917, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23918, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23919, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23920, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23921, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23922, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23923, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23925, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23926, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23927, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23928, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23929, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23930, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23931, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23932, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23933, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23934, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23935, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23937, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23938, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23939, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23940, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23941, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23942, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23943, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23944, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23945, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23946, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23947, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23949, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23950, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23951, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23952, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23953, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23954, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23955, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23956, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23957, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23958, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23959, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23961, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23962, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23963, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23964, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23965, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23966, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23967, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23968, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23969, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23970, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23971, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23973, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23974, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23975, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23976, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23977, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23978, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23979, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23980, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23981, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23982, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23988, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23989, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23990, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23991, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23992, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23993, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23994, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23995, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24000, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24001, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24002, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24003, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24004, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24005, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24006, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24007, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24012, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24013, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24014, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24015, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24016, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24017, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24018, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24024, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24025, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24026, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24027, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24028, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24029, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24030, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24031, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24036, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24037, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24038, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24039, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24040, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24041, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24042, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24043, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24048, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24049, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24050, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24051, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24052, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24053, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24054, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24060, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24061, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24062, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24063, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24064, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24065, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24066, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24067, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24072, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24073, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24074, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24075, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24076, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24077, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24078, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24084, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24085, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24086, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24087, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24088, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24089, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24090, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "states": [ + { + "default": true, + "id": 23685 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "states": [ + { + "default": true, + "id": 128 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "states": [ + { + "default": true, + "id": 21568 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "states": [ + { + "default": true, + "id": 4275 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "states": [ + { + "default": true, + "id": 7512 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "states": [ + { + "default": true, + "id": 126 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "states": [ + { + "default": true, + "id": 521 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5736, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5737, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23355, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23356, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23357, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23358, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23359, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23360, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23275, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23276, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23277, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23278, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23279, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23280, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23281, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23282, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23283, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23284, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23285, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23286, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23287, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23288, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23289, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23290, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23291, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23293, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23295, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23296, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23297, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23298, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23299, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23300, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23301, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23302, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23303, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23304, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23305, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23306, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23307, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23308, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23309, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23310, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23311, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23313, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23315, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23316, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23317, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23318, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23319, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23320, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23321, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23322, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23323, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23324, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23325, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23326, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23327, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23328, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23329, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23330, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23331, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23333, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23335, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23336, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23337, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23338, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23339, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23340, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23341, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23342, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23343, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23344, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23345, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23346, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23347, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23348, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23349, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23350, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23351, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23353, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23361, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23362, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23363, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23364, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23365, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23366, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23367, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23368, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23369, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23370, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23371, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23372, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23373, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23374, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23375, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23376, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23377, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23378, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23379, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23380, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23381, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23382, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23383, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23384, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23385, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23386, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23387, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23388, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23389, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23390, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23391, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23392, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23393, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23394, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23395, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23396, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23397, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23398, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23399, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23400, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23401, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23402, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23403, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23404, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23405, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23406, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23407, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23408, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23409, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23410, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23411, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23412, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23413, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23414, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23415, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23416, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23417, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23418, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23419, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23420, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23421, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23422, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23423, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23424, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23425, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23426, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23427, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23428, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23429, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23430, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23431, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23432, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23433, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23434, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23435, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23436, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23437, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23438, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23439, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23440, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23441, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23442, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23443, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23444, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23445, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23446, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23447, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23448, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23449, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23450, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23451, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23452, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23453, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23454, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23455, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23456, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23457, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23458, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23459, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23460, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23461, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23462, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23463, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23464, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23465, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23466, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23467, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23468, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23469, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23470, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23471, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23472, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23473, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23474, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23475, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23476, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23477, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23478, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23479, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23480, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23481, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23482, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23483, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23484, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23485, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23486, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23487, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23488, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23489, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23490, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23491, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23492, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23493, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23494, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23495, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23496, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23497, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23498, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23499, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23500, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23501, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23502, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23503, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23504, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23505, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23506, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23507, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23508, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23509, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23510, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23511, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23512, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23513, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23514, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23515, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23516, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23517, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23518, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23519, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23520, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23521, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23522, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23523, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23524, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23525, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23526, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23527, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23528, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23529, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23530, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23531, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23532, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23533, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23534, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23535, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23536, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23537, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23538, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23539, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23540, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23541, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23542, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23543, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23544, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23545, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23546, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23547, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23548, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23549, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23550, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23551, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23552, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23553, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23554, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23555, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23556, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23557, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23558, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23559, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23560, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23561, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23562, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23563, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23564, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23565, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23566, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23567, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23568, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23569, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23570, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23571, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23572, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23573, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23574, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23575, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23576, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23577, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23578, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23579, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23580, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23581, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23582, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23583, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23584, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23585, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23586, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23587, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23588, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23589, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23590, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23591, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23592, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23593, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23594, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23595, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23596, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23597, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23598, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23599, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23600, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23601, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23602, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23603, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23604, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23605, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23606, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23607, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23608, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23609, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23610, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23611, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23612, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23613, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23614, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23615, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23616, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23617, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23618, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23619, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23620, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23621, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23622, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23623, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23624, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23625, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23626, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23627, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23628, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23629, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23630, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23631, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23632, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23633, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23634, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23635, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23636, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23637, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23638, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23639, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23640, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23641, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23642, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23643, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23644, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23645, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23646, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23647, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23648, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23649, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23650, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23651, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23652, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23653, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23654, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23655, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23656, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23657, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23658, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23659, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23660, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23661, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23662, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23663, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23664, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23665, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23666, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23667, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23668, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23669, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23670, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23671, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23672, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23673, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23674, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23675, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23676, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23677, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23678, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23679, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23680, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23681, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23682, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23683, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23684, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "states": [ + { + "default": true, + "id": 23274 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1968, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1969, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1970, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1971, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1972, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1973, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1974, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1975, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1976, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1977, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1978, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1979, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1980, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1981, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1982, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1983, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1984, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1985, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1986, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1987, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1988, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1989, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1990, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1991, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "states": [ + { + "default": true, + "id": 4276 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "default": true, + "id": 4274 + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14013, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14014, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14015, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14016, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14017, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14018, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, "minecraft:diorite_stairs": { "properties": { "facing": [ @@ -73758,7 +77330,7 @@ }, "states": [ { - "id": 13843, + "id": 13861, "properties": { "facing": "north", "half": "top", @@ -73767,7 +77339,7 @@ } }, { - "id": 13844, + "id": 13862, "properties": { "facing": "north", "half": "top", @@ -73776,7 +77348,7 @@ } }, { - "id": 13845, + "id": 13863, "properties": { "facing": "north", "half": "top", @@ -73785,7 +77357,7 @@ } }, { - "id": 13846, + "id": 13864, "properties": { "facing": "north", "half": "top", @@ -73794,7 +77366,7 @@ } }, { - "id": 13847, + "id": 13865, "properties": { "facing": "north", "half": "top", @@ -73803,7 +77375,7 @@ } }, { - "id": 13848, + "id": 13866, "properties": { "facing": "north", "half": "top", @@ -73812,7 +77384,7 @@ } }, { - "id": 13849, + "id": 13867, "properties": { "facing": "north", "half": "top", @@ -73821,7 +77393,7 @@ } }, { - "id": 13850, + "id": 13868, "properties": { "facing": "north", "half": "top", @@ -73830,7 +77402,7 @@ } }, { - "id": 13851, + "id": 13869, "properties": { "facing": "north", "half": "top", @@ -73839,7 +77411,7 @@ } }, { - "id": 13852, + "id": 13870, "properties": { "facing": "north", "half": "top", @@ -73848,7 +77420,7 @@ } }, { - "id": 13853, + "id": 13871, "properties": { "facing": "north", "half": "bottom", @@ -73858,250 +77430,250 @@ }, { "default": true, - "id": 13854, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13855, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13856, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13857, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13858, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13859, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13860, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13861, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13862, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13863, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13864, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13865, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13866, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13867, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13868, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13869, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13870, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13871, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13872, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13873, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13874, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13875, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13876, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13877, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13878, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13879, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13880, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13881, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13882, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13883, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13884, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13885, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13886, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13887, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13888, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13889, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13890, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13891, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13892, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13893, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13894, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13895, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13896, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13897, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13898, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13899, "properties": { "facing": "south", "half": "bottom", @@ -74110,7 +77682,7 @@ } }, { - "id": 13882, + "id": 13900, "properties": { "facing": "south", "half": "bottom", @@ -74118,174 +77690,12 @@ "waterlogged": "false" } }, - { - "id": 13883, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13884, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13885, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13886, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13887, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13888, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13889, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13890, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13891, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13892, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13893, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13894, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13895, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13896, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13897, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13898, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13899, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13900, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13901, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -74293,175 +77703,337 @@ "id": 13902, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13903, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13904, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13905, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13906, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13907, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13908, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13909, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13910, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13911, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13912, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13913, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13914, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13915, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13916, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13917, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13918, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13919, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13920, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13921, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13922, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13923, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13924, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13925, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13926, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13927, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13928, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13929, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13930, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13931, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13932, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13933, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13934, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13935, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13936, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13937, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13938, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13939, "properties": { "facing": "east", "half": "bottom", @@ -74470,7 +78042,7 @@ } }, { - "id": 13922, + "id": 13940, "properties": { "facing": "east", "half": "bottom", @@ -74513,7 +78085,7 @@ }, "states": [ { - "id": 17889, + "id": 17907, "properties": { "east": "none", "north": "none", @@ -74524,7 +78096,7 @@ } }, { - "id": 17890, + "id": 17908, "properties": { "east": "none", "north": "none", @@ -74535,7 +78107,7 @@ } }, { - "id": 17891, + "id": 17909, "properties": { "east": "none", "north": "none", @@ -74547,210 +78119,12 @@ }, { "default": true, - "id": 17892, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17893, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17894, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17895, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17896, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17897, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17898, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17899, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17900, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17901, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17902, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17903, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17904, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17905, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17906, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17907, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17908, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17909, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 17910, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -74760,8 +78134,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -74771,8 +78145,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -74782,8 +78156,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -74793,8 +78167,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -74804,8 +78178,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -74815,8 +78189,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -74826,8 +78200,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -74837,8 +78211,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -74848,8 +78222,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -74859,8 +78233,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -74870,8 +78244,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -74881,8 +78255,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -74892,8 +78266,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -74903,8 +78277,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -74913,9 +78287,9 @@ "id": 17925, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -74924,9 +78298,9 @@ "id": 17926, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -74935,9 +78309,9 @@ "id": 17927, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -74946,9 +78320,9 @@ "id": 17928, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -74957,9 +78331,9 @@ "id": 17929, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -74968,9 +78342,9 @@ "id": 17930, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -74979,9 +78353,9 @@ "id": 17931, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -74990,9 +78364,9 @@ "id": 17932, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75001,9 +78375,9 @@ "id": 17933, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75012,9 +78386,9 @@ "id": 17934, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75023,9 +78397,9 @@ "id": 17935, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75034,9 +78408,9 @@ "id": 17936, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75045,9 +78419,9 @@ "id": 17937, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75056,9 +78430,9 @@ "id": 17938, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75067,9 +78441,9 @@ "id": 17939, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -75078,9 +78452,9 @@ "id": 17940, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -75089,9 +78463,9 @@ "id": 17941, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -75100,9 +78474,9 @@ "id": 17942, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -75112,8 +78486,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75123,8 +78497,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75134,8 +78508,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75145,8 +78519,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75156,8 +78530,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75167,8 +78541,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75178,8 +78552,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75189,8 +78563,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75200,8 +78574,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -75211,8 +78585,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -75222,8 +78596,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -75233,8 +78607,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -75244,8 +78618,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75255,8 +78629,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75266,8 +78640,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75277,8 +78651,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75288,8 +78662,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75299,8 +78673,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75309,9 +78683,9 @@ "id": 17961, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75320,9 +78694,9 @@ "id": 17962, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75331,9 +78705,9 @@ "id": 17963, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -75342,9 +78716,9 @@ "id": 17964, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -75353,9 +78727,9 @@ "id": 17965, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -75364,9 +78738,9 @@ "id": 17966, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -75375,9 +78749,9 @@ "id": 17967, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75386,9 +78760,9 @@ "id": 17968, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75397,9 +78771,9 @@ "id": 17969, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75408,9 +78782,9 @@ "id": 17970, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75419,9 +78793,9 @@ "id": 17971, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75430,9 +78804,9 @@ "id": 17972, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75441,9 +78815,9 @@ "id": 17973, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75452,9 +78826,9 @@ "id": 17974, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75463,9 +78837,9 @@ "id": 17975, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -75474,9 +78848,9 @@ "id": 17976, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -75485,9 +78859,9 @@ "id": 17977, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -75496,9 +78870,9 @@ "id": 17978, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -75508,8 +78882,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75519,8 +78893,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75530,8 +78904,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75541,8 +78915,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75552,8 +78926,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75563,8 +78937,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75574,8 +78948,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75585,8 +78959,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75596,8 +78970,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -75607,8 +78981,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -75618,8 +78992,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -75629,8 +79003,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -75640,8 +79014,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75651,8 +79025,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75662,8 +79036,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75673,14 +79047,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 17995, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17996, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17997, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17998, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17999, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18000, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18001, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18002, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18003, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18004, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18005, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18006, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18007, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18008, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18009, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18010, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18011, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18012, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18013, "properties": { "east": "none", "north": "tall", @@ -75691,7 +79263,7 @@ } }, { - "id": 17996, + "id": 18014, "properties": { "east": "none", "north": "tall", @@ -75701,211 +79273,13 @@ "west": "tall" } }, - { - "id": 17997, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17998, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17999, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18000, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18001, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18002, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18003, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18004, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18005, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18006, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18007, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18008, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18009, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18010, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18011, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18012, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18013, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18014, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 18015, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -75915,8 +79289,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -75926,8 +79300,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -75937,8 +79311,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -75948,8 +79322,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -75959,8 +79333,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -75970,8 +79344,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -75981,8 +79355,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -75992,8 +79366,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76003,8 +79377,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76014,8 +79388,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76025,8 +79399,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76036,8 +79410,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76047,8 +79421,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76058,8 +79432,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76069,8 +79443,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76080,8 +79454,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76091,8 +79465,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76101,9 +79475,9 @@ "id": 18033, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76112,9 +79486,9 @@ "id": 18034, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76123,9 +79497,9 @@ "id": 18035, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76134,9 +79508,9 @@ "id": 18036, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76145,9 +79519,9 @@ "id": 18037, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76156,9 +79530,9 @@ "id": 18038, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76167,9 +79541,9 @@ "id": 18039, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76178,9 +79552,9 @@ "id": 18040, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76189,9 +79563,9 @@ "id": 18041, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76200,9 +79574,9 @@ "id": 18042, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76211,9 +79585,9 @@ "id": 18043, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76222,9 +79596,9 @@ "id": 18044, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76233,9 +79607,9 @@ "id": 18045, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76244,9 +79618,9 @@ "id": 18046, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76255,9 +79629,9 @@ "id": 18047, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76266,9 +79640,9 @@ "id": 18048, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76277,9 +79651,9 @@ "id": 18049, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76288,9 +79662,9 @@ "id": 18050, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76300,8 +79674,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76311,8 +79685,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76322,8 +79696,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76333,8 +79707,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76344,8 +79718,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76355,8 +79729,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76366,8 +79740,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76377,8 +79751,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76388,8 +79762,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76399,8 +79773,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76410,8 +79784,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76421,8 +79795,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76432,8 +79806,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76443,8 +79817,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76454,8 +79828,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76465,8 +79839,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76476,8 +79850,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76487,8 +79861,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76497,9 +79871,9 @@ "id": 18069, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76508,9 +79882,9 @@ "id": 18070, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76519,9 +79893,9 @@ "id": 18071, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76530,9 +79904,9 @@ "id": 18072, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76541,9 +79915,9 @@ "id": 18073, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76552,9 +79926,9 @@ "id": 18074, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76563,9 +79937,9 @@ "id": 18075, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76574,9 +79948,9 @@ "id": 18076, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76585,9 +79959,9 @@ "id": 18077, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76596,9 +79970,9 @@ "id": 18078, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76607,9 +79981,9 @@ "id": 18079, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76618,9 +79992,9 @@ "id": 18080, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76629,9 +80003,9 @@ "id": 18081, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76640,9 +80014,9 @@ "id": 18082, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76651,9 +80025,9 @@ "id": 18083, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76662,9 +80036,9 @@ "id": 18084, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76673,9 +80047,9 @@ "id": 18085, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76684,9 +80058,9 @@ "id": 18086, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76696,8 +80070,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76707,8 +80081,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76718,8 +80092,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76729,8 +80103,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -76740,8 +80114,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -76751,8 +80125,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -76762,8 +80136,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -76773,8 +80147,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -76784,8 +80158,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -76795,8 +80169,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -76806,8 +80180,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -76817,8 +80191,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -76828,8 +80202,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -76839,8 +80213,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -76850,8 +80224,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -76861,14 +80235,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 18103, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18104, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18105, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18106, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18107, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18108, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18109, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18110, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18111, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18112, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18113, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18114, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18115, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18116, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18117, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18118, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18119, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18120, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18121, "properties": { "east": "low", "north": "tall", @@ -76879,7 +80451,7 @@ } }, { - "id": 18104, + "id": 18122, "properties": { "east": "low", "north": "tall", @@ -76889,211 +80461,13 @@ "west": "tall" } }, - { - "id": 18105, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18106, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18107, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18108, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18109, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18110, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18111, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18112, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18113, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18114, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18115, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18116, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18117, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18118, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18119, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18120, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18121, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18122, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 18123, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -77103,8 +80477,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -77114,8 +80488,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -77125,8 +80499,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -77136,8 +80510,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -77147,8 +80521,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -77158,8 +80532,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -77169,8 +80543,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -77180,8 +80554,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -77191,8 +80565,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -77202,8 +80576,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -77213,8 +80587,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -77224,8 +80598,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -77235,8 +80609,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -77246,8 +80620,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -77257,14 +80631,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 18139, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18140, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18141, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18142, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18143, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18144, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18145, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18146, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18147, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18148, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18149, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18150, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18151, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18152, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18153, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18154, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18155, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18156, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18157, "properties": { "east": "tall", "north": "none", @@ -77275,7 +80847,7 @@ } }, { - "id": 18140, + "id": 18158, "properties": { "east": "tall", "north": "none", @@ -77285,211 +80857,13 @@ "west": "tall" } }, - { - "id": 18141, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18142, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18143, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18144, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18145, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18146, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18147, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18148, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18149, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18150, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18151, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18152, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18153, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18154, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18155, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18156, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18157, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18158, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 18159, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -77499,8 +80873,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -77510,8 +80884,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -77521,8 +80895,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -77532,8 +80906,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -77543,8 +80917,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -77554,8 +80928,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -77565,8 +80939,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -77576,8 +80950,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -77587,8 +80961,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -77598,8 +80972,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -77609,8 +80983,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -77620,8 +80994,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -77631,8 +81005,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -77642,8 +81016,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -77653,14 +81027,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 18175, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18176, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18177, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18178, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18179, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18180, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18181, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18182, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18183, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18184, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18185, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18186, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18187, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18188, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18189, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18190, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18191, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18192, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18193, "properties": { "east": "tall", "north": "low", @@ -77671,7 +81243,7 @@ } }, { - "id": 18176, + "id": 18194, "properties": { "east": "tall", "north": "low", @@ -77681,211 +81253,13 @@ "west": "tall" } }, - { - "id": 18177, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18178, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18179, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18180, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18181, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18182, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18183, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18184, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18185, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18186, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18187, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18188, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18189, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18190, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18191, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18192, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18193, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18194, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 18195, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -77895,8 +81269,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -77906,8 +81280,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -77917,8 +81291,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -77928,8 +81302,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -77939,8 +81313,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -77950,8 +81324,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -77961,8 +81335,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -77972,8 +81346,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -77983,8 +81357,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -77994,8 +81368,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -78005,14 +81379,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 18207, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18208, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18209, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18210, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18211, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18212, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18213, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18214, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18215, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18216, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18217, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18218, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18219, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18220, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18221, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18222, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18223, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18224, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18225, "properties": { "east": "tall", "north": "tall", @@ -78023,7 +81595,7 @@ } }, { - "id": 18208, + "id": 18226, "properties": { "east": "tall", "north": "tall", @@ -78034,7 +81606,7 @@ } }, { - "id": 18209, + "id": 18227, "properties": { "east": "tall", "north": "tall", @@ -78045,7 +81617,7 @@ } }, { - "id": 18210, + "id": 18228, "properties": { "east": "tall", "north": "tall", @@ -78056,7 +81628,7 @@ } }, { - "id": 18211, + "id": 18229, "properties": { "east": "tall", "north": "tall", @@ -78067,7 +81639,7 @@ } }, { - "id": 18212, + "id": 18230, "properties": { "east": "tall", "north": "tall", @@ -78091,7 +81663,7 @@ "states": [ { "default": true, - "id": 12357 + "id": 12372 } ] }, @@ -78112,7 +81684,7 @@ }, "states": [ { - "id": 519, + "id": 523, "properties": { "facing": "north", "triggered": "true" @@ -78120,77 +81692,77 @@ }, { "default": true, - "id": 520, + "id": 524, "properties": { "facing": "north", "triggered": "false" } }, - { - "id": 521, - "properties": { - "facing": "east", - "triggered": "true" - } - }, - { - "id": 522, - "properties": { - "facing": "east", - "triggered": "false" - } - }, - { - "id": 523, - "properties": { - "facing": "south", - "triggered": "true" - } - }, - { - "id": 524, - "properties": { - "facing": "south", - "triggered": "false" - } - }, { "id": 525, "properties": { - "facing": "west", + "facing": "east", "triggered": "true" } }, { "id": 526, "properties": { - "facing": "west", + "facing": "east", "triggered": "false" } }, { "id": 527, "properties": { - "facing": "up", + "facing": "south", "triggered": "true" } }, { "id": 528, "properties": { - "facing": "up", + "facing": "south", "triggered": "false" } }, { "id": 529, "properties": { - "facing": "down", + "facing": "west", "triggered": "true" } }, { "id": 530, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 531, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 532, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 533, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 534, "properties": { "facing": "down", "triggered": "false" @@ -78202,7 +81774,7 @@ "states": [ { "default": true, - "id": 7412 + "id": 7416 } ] }, @@ -78230,97 +81802,97 @@ "states": [ { "default": true, - "id": 8923, + "id": 8927, "properties": { "rotation": "0" } }, { - "id": 8924, + "id": 8928, "properties": { "rotation": "1" } }, { - "id": 8925, + "id": 8929, "properties": { "rotation": "2" } }, { - "id": 8926, + "id": 8930, "properties": { "rotation": "3" } }, { - "id": 8927, + "id": 8931, "properties": { "rotation": "4" } }, { - "id": 8928, + "id": 8932, "properties": { "rotation": "5" } }, { - "id": 8929, + "id": 8933, "properties": { "rotation": "6" } }, { - "id": 8930, + "id": 8934, "properties": { "rotation": "7" } }, { - "id": 8931, + "id": 8935, "properties": { "rotation": "8" } }, { - "id": 8932, + "id": 8936, "properties": { "rotation": "9" } }, { - "id": 8933, + "id": 8937, "properties": { "rotation": "10" } }, { - "id": 8934, + "id": 8938, "properties": { "rotation": "11" } }, { - "id": 8935, + "id": 8939, "properties": { "rotation": "12" } }, { - "id": 8936, + "id": 8940, "properties": { "rotation": "13" } }, { - "id": 8937, + "id": 8941, "properties": { "rotation": "14" } }, { - "id": 8938, + "id": 8942, "properties": { "rotation": "15" } @@ -78339,25 +81911,25 @@ "states": [ { "default": true, - "id": 8939, + "id": 8943, "properties": { "facing": "north" } }, { - "id": 8940, + "id": 8944, "properties": { "facing": "south" } }, { - "id": 8941, + "id": 8945, "properties": { "facing": "west" } }, { - "id": 8942, + "id": 8946, "properties": { "facing": "east" } @@ -78368,7 +81940,7 @@ "states": [ { "default": true, - "id": 12631 + "id": 12646 } ] }, @@ -78376,7 +81948,7 @@ "states": [ { "default": true, - "id": 21911 + "id": 22313 } ] }, @@ -78397,7 +81969,7 @@ }, "states": [ { - "id": 9200, + "id": 9204, "properties": { "facing": "north", "triggered": "true" @@ -78405,77 +81977,77 @@ }, { "default": true, - "id": 9201, + "id": 9205, "properties": { "facing": "north", "triggered": "false" } }, - { - "id": 9202, - "properties": { - "facing": "east", - "triggered": "true" - } - }, - { - "id": 9203, - "properties": { - "facing": "east", - "triggered": "false" - } - }, - { - "id": 9204, - "properties": { - "facing": "south", - "triggered": "true" - } - }, - { - "id": 9205, - "properties": { - "facing": "south", - "triggered": "false" - } - }, { "id": 9206, "properties": { - "facing": "west", + "facing": "east", "triggered": "true" } }, { "id": 9207, "properties": { - "facing": "west", + "facing": "east", "triggered": "false" } }, { "id": 9208, "properties": { - "facing": "up", + "facing": "south", "triggered": "true" } }, { "id": 9209, "properties": { - "facing": "up", + "facing": "south", "triggered": "false" } }, { "id": 9210, "properties": { - "facing": "down", + "facing": "west", "triggered": "true" } }, { "id": 9211, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 9212, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 9213, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 9214, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 9215, "properties": { "facing": "down", "triggered": "false" @@ -78487,7 +82059,7 @@ "states": [ { "default": true, - "id": 7661 + "id": 7665 } ] }, @@ -78495,7 +82067,7 @@ "states": [ { "default": true, - "id": 7507 + "id": 7511 } ] }, @@ -78503,7 +82075,7 @@ "states": [ { "default": true, - "id": 7385 + "id": 7389 } ] }, @@ -78511,7 +82083,7 @@ "states": [ { "default": true, - "id": 12358 + "id": 12373 } ] }, @@ -78519,7 +82091,7 @@ "states": [ { "default": true, - "id": 7402 + "id": 7406 } ] }, @@ -78538,28 +82110,28 @@ }, "states": [ { - "id": 7403, + "id": 7407, "properties": { "eye": "true", "facing": "north" } }, { - "id": 7404, + "id": 7408, "properties": { "eye": "true", "facing": "south" } }, { - "id": 7405, + "id": 7409, "properties": { "eye": "true", "facing": "west" } }, { - "id": 7406, + "id": 7410, "properties": { "eye": "true", "facing": "east" @@ -78567,28 +82139,28 @@ }, { "default": true, - "id": 7407, + "id": 7411, "properties": { "eye": "false", "facing": "north" } }, { - "id": 7408, + "id": 7412, "properties": { "eye": "false", "facing": "south" } }, { - "id": 7409, + "id": 7413, "properties": { "eye": "false", "facing": "west" } }, { - "id": 7410, + "id": 7414, "properties": { "eye": "false", "facing": "east" @@ -78609,38 +82181,38 @@ }, "states": [ { - "id": 12189, + "id": 12193, "properties": { "facing": "north" } }, { - "id": 12190, + "id": 12194, "properties": { "facing": "east" } }, { - "id": 12191, + "id": 12195, "properties": { "facing": "south" } }, { - "id": 12192, + "id": 12196, "properties": { "facing": "west" } }, { "default": true, - "id": 12193, + "id": 12197, "properties": { "facing": "up" } }, { - "id": 12194, + "id": 12198, "properties": { "facing": "down" } @@ -78651,13552 +82223,11 @@ "states": [ { "default": true, - "id": 7411 + "id": 7415 } ] }, "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13953, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13954, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13955, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13956, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13957, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13958, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13203, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13204, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13205, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13206, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13207, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13208, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13209, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13210, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13211, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13212, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13213, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13214, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13215, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13216, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13217, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13218, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13219, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13220, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13221, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13222, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13223, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13224, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13225, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13226, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13227, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13228, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13229, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13230, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13231, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13232, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13233, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13234, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13235, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13236, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13237, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13238, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13239, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13240, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13241, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13242, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13243, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13244, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13245, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13246, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13247, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13248, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13249, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13250, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13251, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13252, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13253, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13254, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13255, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13256, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13257, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13258, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13259, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13260, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13261, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13262, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13263, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13264, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13265, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13266, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13267, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13268, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13269, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13270, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13271, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13272, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13273, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13274, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13275, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13276, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13277, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13278, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13279, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13280, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13281, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13282, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17565, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17566, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17567, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17568, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17569, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17570, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17571, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17572, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17573, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17574, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17575, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17576, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17577, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17578, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17579, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17580, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17581, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17582, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17583, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17584, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17585, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17586, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17587, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17588, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17589, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17590, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17591, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17592, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17593, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17594, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17595, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17596, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17597, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17598, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17599, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17600, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17601, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17602, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17603, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17604, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17605, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17606, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17607, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17608, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17609, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17610, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17611, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17612, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17613, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17614, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17615, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17616, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17617, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17618, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17619, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17620, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17621, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17622, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17623, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17624, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17625, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17626, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17627, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17628, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17629, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17630, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17631, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17632, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17633, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17634, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17635, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17636, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17637, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17638, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17639, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17640, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17641, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17642, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17643, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17644, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17645, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17646, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17647, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17648, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17649, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17650, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17651, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17652, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17653, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17654, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17655, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17656, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17657, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17658, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17659, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17660, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17661, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17662, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17663, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17664, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17665, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17666, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17667, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17668, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17669, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17670, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17671, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17672, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17673, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17674, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17675, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17676, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17677, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17678, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17679, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17680, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17681, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17682, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17683, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17684, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17685, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17686, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17687, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17688, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17689, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17690, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17691, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17692, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17693, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17694, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17695, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17696, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17697, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17698, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17699, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17700, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17701, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17702, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17703, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17704, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17705, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17706, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17707, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17708, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17709, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17710, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17711, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17712, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17713, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17714, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17715, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17716, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17717, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17718, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17719, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17720, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17721, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17722, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17723, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17724, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17725, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17726, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17727, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17728, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17729, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17730, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17731, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17732, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17733, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17734, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17735, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17736, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17737, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17738, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17739, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17740, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17741, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17742, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17743, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17744, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17745, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17746, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17747, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17748, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17749, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17750, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17751, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17752, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17753, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17754, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17755, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17756, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17757, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17758, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17759, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17760, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17761, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17762, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17763, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17764, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17765, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17766, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17767, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17768, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17769, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17770, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17771, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17772, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17773, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17774, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17775, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17776, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17777, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17778, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17779, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17780, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17781, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17782, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17783, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17784, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17785, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17786, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17787, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17788, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17789, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17790, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17791, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17792, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17793, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17794, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17795, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17796, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17797, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17798, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17799, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17800, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17801, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17802, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17803, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17804, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17805, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17806, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17807, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17808, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17809, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17810, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17811, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17812, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17813, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17814, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17815, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17816, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17817, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17818, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17819, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17820, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17821, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17822, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17823, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17824, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17825, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17826, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17827, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17828, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17829, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17830, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17831, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17832, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17833, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17834, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17835, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17836, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17837, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17838, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17839, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17840, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17841, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17842, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17843, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17844, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17845, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17846, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17847, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17848, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17849, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17850, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17851, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17852, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17853, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17854, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17855, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17856, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17857, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17858, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17859, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17860, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17861, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17862, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17863, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17864, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17865, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17866, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17867, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17868, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17869, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17870, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17871, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17872, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17873, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17874, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17875, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17876, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17877, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17878, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17879, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17880, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17881, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17882, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17883, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17884, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17885, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17886, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17887, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17888, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "default": true, - "id": 12349 - } - ] - }, - "minecraft:ender_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7509, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7510, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 7511, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 7512, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 7513, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 7514, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 7515, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 7516, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper": { - "states": [ - { - "default": true, - "id": 21163 - } - ] - }, - "minecraft:exposed_cut_copper": { - "states": [ - { - "default": true, - "id": 21169 - } - ] - }, - "minecraft:exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21503, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21504, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21505, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21506, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21507, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21508, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21331, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21332, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21333, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21334, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21335, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21336, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21337, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21338, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21339, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21340, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21341, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21342, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21343, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21344, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21345, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21346, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21347, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21348, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21349, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21350, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21351, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21352, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21353, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21354, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21355, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21356, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21357, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21358, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21359, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21360, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21361, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21362, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21363, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21364, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21365, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21366, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21367, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21368, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21369, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21370, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21371, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21372, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21373, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21374, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21375, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21376, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21377, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21378, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21379, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21380, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21381, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21382, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21383, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21384, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21385, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21386, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21387, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21388, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21389, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21390, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21391, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21392, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21393, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21394, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21395, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21396, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21397, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21398, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21399, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21400, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21401, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21402, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21403, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21404, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21405, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21406, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21407, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21408, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21409, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21410, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 4282, - "properties": { - "moisture": "0" - } - }, - { - "id": 4283, - "properties": { - "moisture": "1" - } - }, - { - "id": 4284, - "properties": { - "moisture": "2" - } - }, - { - "id": 4285, - "properties": { - "moisture": "3" - } - }, - { - "id": 4286, - "properties": { - "moisture": "4" - } - }, - { - "id": 4287, - "properties": { - "moisture": "5" - } - }, - { - "id": 4288, - "properties": { - "moisture": "6" - } - }, - { - "id": 4289, - "properties": { - "moisture": "7" - } - } - ] - }, - "minecraft:fern": { - "states": [ - { - "default": true, - "id": 2002 - } - ] - }, - "minecraft:fire": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2356, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2357, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2358, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2359, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2360, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2361, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2362, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2363, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2364, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2365, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2366, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2367, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2368, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2369, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2370, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2371, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2372, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2373, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2374, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2375, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2376, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2377, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2378, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2379, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2380, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2381, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2382, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2383, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2384, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2385, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2386, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "default": true, - "id": 2387, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2388, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2389, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2390, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2391, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2392, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2393, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2394, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2395, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2396, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2397, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2398, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2399, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2400, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2401, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2402, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2403, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2404, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2405, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2406, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2407, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2408, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2409, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2410, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2411, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2412, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2413, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2414, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2415, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2416, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2417, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2418, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2419, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2420, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2421, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2422, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2423, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2424, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2425, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2426, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2427, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2428, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2429, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2430, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2431, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2432, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2433, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2434, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2435, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2436, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2437, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2438, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2439, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2440, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2441, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2442, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2443, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2444, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2445, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2446, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2447, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2448, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2449, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2450, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2451, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2452, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2453, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2454, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2455, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2456, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2457, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2458, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2459, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2460, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2461, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2462, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2463, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2464, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2465, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2466, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2467, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2468, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2469, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2470, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2471, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2472, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2473, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2474, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2475, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2476, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2477, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2478, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2479, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2480, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2481, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2482, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2483, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2484, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2485, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2486, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2487, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2488, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2489, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2490, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2491, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2492, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2493, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2494, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2495, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2496, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2497, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2498, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2499, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2500, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2501, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2502, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2503, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2504, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2505, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2506, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2507, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2508, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2509, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2510, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2511, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2512, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2513, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2514, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2515, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2516, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2517, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2518, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2519, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2520, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2521, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2522, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2523, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2524, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2525, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2526, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2527, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2528, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2529, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2530, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2531, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2532, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2533, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2534, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2535, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2536, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2537, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2538, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2539, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2540, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2541, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2542, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2543, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2544, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2545, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2546, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2547, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2548, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2549, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2550, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2551, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2552, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2553, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2554, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2555, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2556, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2557, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2558, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2559, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2560, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2561, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2562, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2563, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2564, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2565, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2566, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2567, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2568, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2569, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2570, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2571, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2572, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2573, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2574, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2575, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2576, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2577, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2578, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2579, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2580, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2581, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2582, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2583, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2584, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2585, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2586, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2587, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2588, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2589, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2590, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2591, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2592, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2593, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2594, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2595, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2596, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2597, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2598, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2599, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2600, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2601, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2602, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2603, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2604, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2605, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2606, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2607, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2608, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2609, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2610, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2611, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2612, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2613, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2614, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2615, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2616, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2617, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2618, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2619, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2620, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2621, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2622, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2623, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2624, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2625, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2626, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2627, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2628, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2629, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2630, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2631, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2632, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2633, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2634, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2635, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2636, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2637, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2638, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2639, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2640, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2641, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2642, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2643, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2644, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2645, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2646, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2647, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2648, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2649, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2650, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2651, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2652, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2653, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2654, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2655, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2656, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2657, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2658, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2659, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2660, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2661, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2662, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2663, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2664, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2665, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2666, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2667, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2668, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2669, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2670, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2671, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2672, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2673, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2674, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2675, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2676, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2677, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2678, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2679, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2680, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2681, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2682, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2683, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2684, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2685, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2686, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2687, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2688, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2689, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2690, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2691, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2692, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2693, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2694, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2695, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2696, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2697, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2698, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2699, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2700, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2701, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2702, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2703, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2704, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2705, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2706, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2707, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2708, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2709, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2710, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2711, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2712, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2713, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2714, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2715, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2716, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2717, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2718, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2719, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2720, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2721, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2722, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2723, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2724, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2725, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2726, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2727, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2728, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2729, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2730, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2731, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2732, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2733, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2734, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2735, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2736, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2737, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2738, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2739, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2740, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2741, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2742, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2743, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2744, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2745, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2746, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2747, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2748, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2749, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2750, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2751, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2752, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2753, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2754, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2755, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2756, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2757, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2758, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2759, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2760, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2761, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2762, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2763, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2764, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2765, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2766, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2767, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2768, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2769, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2770, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2771, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2772, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2773, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2774, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2775, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2776, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2777, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2778, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2779, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2780, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2781, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2782, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2783, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2784, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2785, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2786, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2787, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2788, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2789, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2790, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2791, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2792, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2793, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2794, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2795, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2796, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2797, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2798, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2799, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2800, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2801, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2802, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2803, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2804, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2805, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2806, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2807, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2808, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2809, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2810, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2811, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2812, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2813, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2814, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2815, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2816, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2817, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2818, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2819, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2820, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2821, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2822, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2823, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2824, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2825, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2826, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2827, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2828, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2829, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2830, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2831, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2832, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2833, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2834, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2835, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2836, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2837, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2838, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2839, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2840, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2841, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2842, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2843, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2844, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2845, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2846, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2847, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2848, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2849, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2850, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2851, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2852, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2853, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2854, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2855, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2856, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2857, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2858, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2859, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2860, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2861, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2862, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2863, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2864, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2865, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2866, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2867, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12670, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12671, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ - { - "default": true, - "id": 12652 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12690, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12691, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12758, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12759, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12760, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12761, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12762, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12763, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12764, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12765, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "default": true, - "id": 18278 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "default": true, - "id": 8563 - } - ] - }, - "minecraft:flowering_azalea": { - "states": [ - { - "default": true, - "id": 21968 - } - ] - }, - "minecraft:flowering_azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 485, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 486, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 487, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 488, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 489, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 490, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 491, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 492, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 493, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 494, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 495, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 496, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 497, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 498, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 499, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 500, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 501, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 502, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 503, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 504, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 505, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 506, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 507, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 508, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 509, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 510, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 511, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 512, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:frogspawn": { - "states": [ - { - "default": true, - "id": 23715 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 12383, - "properties": { - "age": "0" - } - }, - { - "id": 12384, - "properties": { - "age": "1" - } - }, - { - "id": 12385, - "properties": { - "age": "2" - } - }, - { - "id": 12386, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4290, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 4291, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 4292, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 4293, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 4294, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 4295, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 4296, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 4297, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:gilded_blackstone": { - "states": [ - { - "default": true, - "id": 20126 - } - ] - }, - "minecraft:glass": { - "states": [ - { - "default": true, - "id": 515 - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6776, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6777, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6778, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6779, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6780, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6781, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6782, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6783, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6784, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6785, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6786, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6787, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6788, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6789, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6790, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6791, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6792, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6793, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6794, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6795, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6796, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6797, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6798, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6799, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6800, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6801, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6802, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6803, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6804, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6805, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6806, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6807, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:glow_lichen": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6865, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6866, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6867, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6868, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6869, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6870, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6871, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6872, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6873, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6874, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6875, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6876, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6877, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6878, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6879, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6880, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6881, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6882, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6883, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6884, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6885, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6886, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6887, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6888, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6889, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6890, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6891, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6892, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6893, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6894, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6895, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6896, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6897, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6898, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6899, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6900, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6901, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6902, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6903, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6904, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6905, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6906, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6907, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6908, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6909, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6910, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6911, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6912, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6913, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6914, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6915, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6916, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6917, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6918, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6919, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6920, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6921, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6922, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6923, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6924, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6925, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6926, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6927, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6928, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6929, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6930, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6931, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6932, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6933, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6934, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6935, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6936, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6937, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6938, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6939, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6940, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6941, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6942, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6943, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6944, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6945, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6946, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6947, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6948, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6949, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6950, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6951, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6952, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6953, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6954, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6955, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6956, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6957, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6958, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6959, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6960, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6961, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6962, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6963, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6964, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6965, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6966, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6967, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6968, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6969, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6970, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6971, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6972, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6973, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6974, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6975, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6976, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6977, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6978, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6979, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6980, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6981, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6982, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6983, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6984, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6985, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6986, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6987, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6988, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6989, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6990, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6991, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6992, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "default": true, - "id": 5860 - } - ] - }, - "minecraft:gold_block": { - "states": [ - { - "default": true, - "id": 2087 - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "default": true, - "id": 119 - } - ] - }, - "minecraft:granite": { - "states": [ - { - "default": true, - "id": 2 - } - ] - }, - "minecraft:granite_slab": { "properties": { "type": [ "top", @@ -92254,6 +82285,13547 @@ } ] }, + "minecraft:end_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13221, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13222, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13223, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13224, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13225, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13226, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13227, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13228, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13229, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13230, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13231, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13232, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13233, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13234, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13235, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13236, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13237, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13238, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13239, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13240, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13241, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13242, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13243, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13244, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13245, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13246, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13247, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13248, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13249, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13250, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13251, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13252, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13253, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13254, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13255, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13256, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13257, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13258, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13259, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13260, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13261, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13262, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13263, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13264, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13265, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13266, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13267, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13268, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13269, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13270, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13271, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13272, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13273, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13274, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13275, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13276, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13277, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13278, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13279, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13280, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13281, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13282, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13283, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13284, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13285, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13286, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13287, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13288, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13289, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13290, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13291, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13292, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13293, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13294, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13295, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13296, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13297, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13298, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13299, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13300, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17583, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17584, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17585, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17586, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17587, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17588, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17589, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17590, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17591, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17592, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17593, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17595, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17596, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17597, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17598, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17599, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17600, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17601, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17602, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17603, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17604, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17605, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17606, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17607, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17608, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17609, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17610, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17611, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17612, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17613, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17614, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17615, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17724, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17725, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17726, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17727, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17737, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17738, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17739, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17740, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17741, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17742, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17743, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17744, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17745, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17746, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17747, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17748, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17749, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17750, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17751, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17761, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17762, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17763, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17773, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17774, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17775, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17776, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17777, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17778, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17779, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17780, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17781, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17782, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17783, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17784, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17785, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17786, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17787, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17788, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17789, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17790, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17791, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17792, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17793, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17794, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17795, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17796, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17797, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17798, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17799, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17800, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17801, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17802, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17803, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17804, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17805, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17806, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17807, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17808, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17809, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17810, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17811, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17812, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17813, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17814, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17815, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17816, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17817, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17818, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17819, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17820, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17821, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17822, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17823, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17824, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17825, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17826, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17827, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17828, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17829, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17830, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17831, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17832, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17833, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17834, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17835, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17836, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17837, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17838, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17839, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17840, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17841, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17842, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17843, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17844, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17845, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17846, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17847, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17848, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17849, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17850, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17851, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17852, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17853, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17854, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17855, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17856, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17857, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17858, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17859, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17860, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17861, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17862, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17863, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17864, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17865, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17866, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17867, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17868, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17869, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17870, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17871, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17872, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17873, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17874, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17875, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17876, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17877, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17878, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17879, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17880, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17881, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17882, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17883, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17884, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17885, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17886, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17887, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17888, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17889, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17890, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17891, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17892, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17893, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17894, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17897, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17898, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17899, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17900, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17901, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17902, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17903, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17904, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17905, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17906, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "states": [ + { + "default": true, + "id": 12353 + } + ] + }, + "minecraft:ender_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7513, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7514, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7515, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7516, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7517, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7518, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7519, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7520, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper": { + "states": [ + { + "default": true, + "id": 21565 + } + ] + }, + "minecraft:exposed_cut_copper": { + "states": [ + { + "default": true, + "id": 21571 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21905, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21906, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21907, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21908, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21909, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21910, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21733, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21734, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21735, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21736, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21737, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21738, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21739, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21740, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21741, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21742, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21748, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21749, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21750, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21751, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21752, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21753, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21754, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21755, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21756, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21757, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21758, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21759, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21760, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21761, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21762, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21768, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21769, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21770, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21771, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21772, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21773, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21774, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21775, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21776, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21777, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21778, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21779, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21780, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21781, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21782, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21788, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21789, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21790, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21791, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21792, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21793, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21794, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21795, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21796, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21797, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21798, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21799, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21800, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21801, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21802, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21808, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21809, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21810, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21811, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21812, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4286, + "properties": { + "moisture": "0" + } + }, + { + "id": 4287, + "properties": { + "moisture": "1" + } + }, + { + "id": 4288, + "properties": { + "moisture": "2" + } + }, + { + "id": 4289, + "properties": { + "moisture": "3" + } + }, + { + "id": 4290, + "properties": { + "moisture": "4" + } + }, + { + "id": 4291, + "properties": { + "moisture": "5" + } + }, + { + "id": 4292, + "properties": { + "moisture": "6" + } + }, + { + "id": 4293, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "states": [ + { + "default": true, + "id": 2006 + } + ] + }, + "minecraft:fire": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2360, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2361, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2362, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2363, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2364, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2365, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2366, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2367, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2368, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2369, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2370, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2371, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2372, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2373, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2374, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2375, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2376, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2377, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2378, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2379, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2380, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2381, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2382, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2383, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2384, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2385, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2386, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2387, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2388, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2389, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2390, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 2391, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2392, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2393, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2394, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2395, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2396, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2397, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2398, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2399, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2400, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2401, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2402, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2403, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2404, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2405, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2406, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2407, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2408, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2409, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2410, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2411, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2412, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2413, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2414, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2415, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2416, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2417, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2418, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2419, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2420, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2421, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2422, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2423, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2424, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2425, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2426, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2427, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2428, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2429, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2430, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2431, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2432, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2433, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2434, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2435, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2436, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2437, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2438, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2439, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2440, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2441, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2442, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2443, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2444, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2445, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2446, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2447, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2448, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2449, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2450, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2451, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2452, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2453, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2454, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2455, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2456, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2457, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2458, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2459, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2460, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2461, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2462, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2463, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2464, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2465, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2466, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2467, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2468, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2469, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2470, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2471, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2472, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2473, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2474, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2475, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2476, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2477, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2478, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2479, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2480, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2481, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2482, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2483, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2484, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2485, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2486, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2487, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2488, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2489, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2490, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2491, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2492, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2493, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2494, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2495, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2496, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2497, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2498, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2499, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2500, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2501, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2502, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2503, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2504, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2505, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2506, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2507, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2508, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2509, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2510, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2511, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2512, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2513, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2514, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2515, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2516, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2517, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2518, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2519, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2520, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2521, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2522, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2523, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2524, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2525, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2526, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2527, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2528, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2529, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2530, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2531, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2532, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2533, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2534, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2535, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2536, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2537, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2538, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2539, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2540, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2541, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2542, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2543, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2544, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2545, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2546, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2547, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2548, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2549, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2550, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2551, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2552, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2553, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2554, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2555, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2556, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2557, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2558, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2559, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2560, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2561, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2562, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2563, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2564, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2565, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2566, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2567, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2568, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2569, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2570, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2571, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2572, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2573, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2574, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2575, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2576, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2577, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2578, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2579, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2580, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2581, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2582, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2583, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2584, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2585, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2586, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2587, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2588, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2589, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2590, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2591, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2592, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2593, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2594, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2595, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2596, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2597, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2598, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2599, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2600, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2601, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2602, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2603, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2604, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2605, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2606, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2607, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2608, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2609, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2610, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2611, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2612, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2613, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2614, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2615, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2616, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2617, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2618, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2619, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2620, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2621, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2622, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2623, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2624, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2625, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2626, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2627, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2628, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2629, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2630, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2631, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2632, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2633, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2634, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2635, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2636, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2637, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2638, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2639, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2640, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2641, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2642, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2643, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2644, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2645, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2646, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2647, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2648, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2649, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2650, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2651, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2652, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2653, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2654, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2655, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2656, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2657, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2658, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2659, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2660, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2661, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2662, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2663, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2664, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2665, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2666, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2667, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2668, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2669, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2670, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2671, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2672, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2673, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2674, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2675, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2676, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2677, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2678, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2679, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2680, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2681, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2682, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2683, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2684, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2685, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2686, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2687, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2688, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2689, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2690, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2691, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2692, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2693, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2694, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2695, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2696, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2697, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2698, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2699, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2700, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2701, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2702, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2703, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2704, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2705, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2706, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2707, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2708, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2709, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2710, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2711, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2712, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2713, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2714, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2715, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2716, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2717, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2718, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2719, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2720, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2721, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2722, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2723, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2724, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2725, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2726, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2727, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2728, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2729, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2730, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2731, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2732, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2733, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2734, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2735, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2736, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2737, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2738, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2739, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2740, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2741, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2742, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2743, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2744, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2745, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2746, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2747, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2748, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2749, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2750, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2751, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2752, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2753, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2754, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2755, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2756, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2757, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2758, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2759, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2760, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2761, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2762, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2763, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2764, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2765, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2766, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2767, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2768, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2769, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2770, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2771, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2772, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2773, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2774, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2775, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2776, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2777, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2778, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2779, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2780, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2781, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2782, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2783, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2784, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2785, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2786, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2787, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2788, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2789, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2790, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2791, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2792, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2793, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2794, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2795, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2796, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2797, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2798, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2799, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2800, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2801, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2802, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2803, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2804, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2805, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2806, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2807, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2808, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2809, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2810, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2811, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2812, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2813, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2814, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2815, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2816, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2817, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2818, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2819, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2820, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2821, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2822, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2823, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2824, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2825, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2826, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2827, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2828, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2829, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2830, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2831, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2832, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2833, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2834, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2835, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2836, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2837, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2838, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2839, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2840, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2841, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2842, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2843, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2844, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2845, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2846, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2847, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2848, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2849, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2850, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2851, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2852, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2853, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2854, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2855, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2856, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2857, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2858, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2859, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2860, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2861, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2862, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2863, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2864, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2865, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2866, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2867, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2868, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2869, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2870, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2871, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12688, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12689, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ + { + "default": true, + "id": 12670 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12708, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12709, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12776, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12777, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12778, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12779, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12780, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12781, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12782, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12783, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "states": [ + { + "default": true, + "id": 18296 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "default": true, + "id": 8567 + } + ] + }, + "minecraft:flowering_azalea": { + "states": [ + { + "default": true, + "id": 22370 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 489, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 490, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 491, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 492, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 493, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 494, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 495, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 496, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 497, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 498, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 499, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 500, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 501, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 502, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 503, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 504, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 505, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 506, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 507, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 508, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 509, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 510, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 511, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 512, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 513, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 514, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 515, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 516, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "states": [ + { + "default": true, + "id": 24117 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12398, + "properties": { + "age": "0" + } + }, + { + "id": 12399, + "properties": { + "age": "1" + } + }, + { + "id": 12400, + "properties": { + "age": "2" + } + }, + { + "id": 12401, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4294, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 4295, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 4296, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 4297, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 4298, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 4299, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 4300, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 4301, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "states": [ + { + "default": true, + "id": 20144 + } + ] + }, + "minecraft:glass": { + "states": [ + { + "default": true, + "id": 519 + } + ] + }, + "minecraft:glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6783, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6787, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6791, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6795, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6799, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6803, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6807, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6811, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6869, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6870, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6871, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6872, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6873, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6874, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6875, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6876, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6877, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6878, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6879, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6880, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6881, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6882, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6883, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6884, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6885, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6886, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6887, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6888, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6889, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6890, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6891, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6892, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6893, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6894, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6895, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6896, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6897, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6898, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6899, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6900, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6901, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6902, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6903, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6904, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6905, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6906, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6907, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6908, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6909, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6910, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6911, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6912, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6913, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6914, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6915, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6916, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6917, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6918, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6919, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6920, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6921, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6922, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6923, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6924, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6925, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6926, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6927, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6928, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6929, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6930, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6931, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6932, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6933, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6934, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6935, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6936, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6937, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6938, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6939, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6940, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6941, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6942, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6943, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6944, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6945, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6946, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6947, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6948, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6949, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6950, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6951, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6952, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6953, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6954, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6955, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6956, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6957, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6958, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6959, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6960, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6961, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6962, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6963, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6964, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6965, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6966, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6967, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6968, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6969, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6970, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6971, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6972, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6973, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6974, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6975, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6976, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6977, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6978, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6979, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6980, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6981, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6982, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6983, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6984, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6985, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6986, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6987, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6988, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6989, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6990, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6991, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6992, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6993, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6994, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6995, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "states": [ + { + "default": true, + "id": 5864 + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "default": true, + "id": 2091 + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:granite": { + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13989, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13990, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13991, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13992, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13993, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13994, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, "minecraft:granite_stairs": { "properties": { "facing": [ @@ -92280,7 +95852,7 @@ }, "states": [ { - "id": 13523, + "id": 13541, "properties": { "facing": "north", "half": "top", @@ -92289,7 +95861,7 @@ } }, { - "id": 13524, + "id": 13542, "properties": { "facing": "north", "half": "top", @@ -92298,7 +95870,7 @@ } }, { - "id": 13525, + "id": 13543, "properties": { "facing": "north", "half": "top", @@ -92307,7 +95879,7 @@ } }, { - "id": 13526, + "id": 13544, "properties": { "facing": "north", "half": "top", @@ -92316,7 +95888,7 @@ } }, { - "id": 13527, + "id": 13545, "properties": { "facing": "north", "half": "top", @@ -92325,7 +95897,7 @@ } }, { - "id": 13528, + "id": 13546, "properties": { "facing": "north", "half": "top", @@ -92334,7 +95906,7 @@ } }, { - "id": 13529, + "id": 13547, "properties": { "facing": "north", "half": "top", @@ -92343,7 +95915,7 @@ } }, { - "id": 13530, + "id": 13548, "properties": { "facing": "north", "half": "top", @@ -92352,7 +95924,7 @@ } }, { - "id": 13531, + "id": 13549, "properties": { "facing": "north", "half": "top", @@ -92361,7 +95933,7 @@ } }, { - "id": 13532, + "id": 13550, "properties": { "facing": "north", "half": "top", @@ -92370,7 +95942,7 @@ } }, { - "id": 13533, + "id": 13551, "properties": { "facing": "north", "half": "bottom", @@ -92380,250 +95952,250 @@ }, { "default": true, - "id": 13534, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13535, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13536, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13537, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13538, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13539, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13540, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13541, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13542, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13543, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13544, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13545, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13546, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13547, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13548, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13549, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13550, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13551, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13552, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13553, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13554, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13555, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13556, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13557, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13558, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13559, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13560, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13561, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13562, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13563, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13564, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13565, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13566, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13567, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13568, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13569, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13570, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13571, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13572, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13573, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13574, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13575, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13576, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13577, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13578, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13579, "properties": { "facing": "south", "half": "bottom", @@ -92632,7 +96204,7 @@ } }, { - "id": 13562, + "id": 13580, "properties": { "facing": "south", "half": "bottom", @@ -92640,174 +96212,12 @@ "waterlogged": "false" } }, - { - "id": 13563, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13564, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13565, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13566, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13567, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13568, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13569, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13570, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13571, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13572, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13573, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13574, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13575, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13576, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13577, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13578, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13579, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13580, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13581, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -92815,175 +96225,337 @@ "id": 13582, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13583, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13584, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13585, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13586, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13587, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13588, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13589, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13590, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13591, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13592, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13593, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13594, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13595, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13596, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13597, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13598, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13599, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13600, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13601, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13602, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13603, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13604, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13605, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13606, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13607, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13608, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13609, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13610, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13611, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13612, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13613, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13614, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13615, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13616, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13617, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13619, "properties": { "facing": "east", "half": "bottom", @@ -92992,7 +96564,7 @@ } }, { - "id": 13602, + "id": 13620, "properties": { "facing": "east", "half": "bottom", @@ -93035,7 +96607,7 @@ }, "states": [ { - "id": 15297, + "id": 15315, "properties": { "east": "none", "north": "none", @@ -93046,7 +96618,7 @@ } }, { - "id": 15298, + "id": 15316, "properties": { "east": "none", "north": "none", @@ -93057,7 +96629,7 @@ } }, { - "id": 15299, + "id": 15317, "properties": { "east": "none", "north": "none", @@ -93069,210 +96641,12 @@ }, { "default": true, - "id": 15300, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15301, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15302, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15303, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15304, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15305, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15306, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15307, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15308, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15309, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15310, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15311, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15312, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15313, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15314, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15315, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15316, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15317, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 15318, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93282,8 +96656,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93293,8 +96667,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93304,8 +96678,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93315,8 +96689,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93326,8 +96700,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93337,8 +96711,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -93348,8 +96722,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -93359,8 +96733,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -93370,8 +96744,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -93381,8 +96755,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -93392,8 +96766,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -93403,8 +96777,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93414,8 +96788,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93425,8 +96799,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93435,9 +96809,9 @@ "id": 15333, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93446,9 +96820,9 @@ "id": 15334, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93457,9 +96831,9 @@ "id": 15335, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93468,9 +96842,9 @@ "id": 15336, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -93479,9 +96853,9 @@ "id": 15337, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -93490,9 +96864,9 @@ "id": 15338, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -93501,9 +96875,9 @@ "id": 15339, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -93512,9 +96886,9 @@ "id": 15340, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -93523,9 +96897,9 @@ "id": 15341, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -93534,9 +96908,9 @@ "id": 15342, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93545,9 +96919,9 @@ "id": 15343, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93556,9 +96930,9 @@ "id": 15344, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93567,9 +96941,9 @@ "id": 15345, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93578,9 +96952,9 @@ "id": 15346, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93589,9 +96963,9 @@ "id": 15347, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93600,9 +96974,9 @@ "id": 15348, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -93611,9 +96985,9 @@ "id": 15349, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -93622,9 +96996,9 @@ "id": 15350, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -93634,8 +97008,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -93645,8 +97019,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -93656,8 +97030,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -93667,8 +97041,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93678,8 +97052,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93689,8 +97063,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93700,8 +97074,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93711,8 +97085,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93722,8 +97096,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93733,8 +97107,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -93744,8 +97118,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -93755,8 +97129,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -93766,8 +97140,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -93777,8 +97151,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -93788,8 +97162,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -93799,8 +97173,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93810,8 +97184,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93821,8 +97195,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93831,9 +97205,9 @@ "id": 15369, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93842,9 +97216,9 @@ "id": 15370, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93853,9 +97227,9 @@ "id": 15371, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93864,9 +97238,9 @@ "id": 15372, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -93875,9 +97249,9 @@ "id": 15373, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -93886,9 +97260,9 @@ "id": 15374, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -93897,9 +97271,9 @@ "id": 15375, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -93908,9 +97282,9 @@ "id": 15376, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -93919,9 +97293,9 @@ "id": 15377, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -93930,9 +97304,9 @@ "id": 15378, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -93941,9 +97315,9 @@ "id": 15379, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -93952,9 +97326,9 @@ "id": 15380, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -93963,9 +97337,9 @@ "id": 15381, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -93974,9 +97348,9 @@ "id": 15382, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -93985,9 +97359,9 @@ "id": 15383, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -93996,9 +97370,9 @@ "id": 15384, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94007,9 +97381,9 @@ "id": 15385, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94018,9 +97392,9 @@ "id": 15386, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94030,8 +97404,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94041,8 +97415,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94052,8 +97426,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94063,8 +97437,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94074,8 +97448,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -94085,8 +97459,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -94096,8 +97470,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -94107,8 +97481,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -94118,8 +97492,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -94129,8 +97503,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94140,8 +97514,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94151,8 +97525,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94162,8 +97536,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94173,8 +97547,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94184,8 +97558,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94195,14 +97569,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15403, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15404, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15405, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15406, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15407, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15408, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15409, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15410, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15411, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15412, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15413, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15414, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15415, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15416, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15417, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15418, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15419, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15420, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15421, "properties": { "east": "none", "north": "tall", @@ -94213,7 +97785,7 @@ } }, { - "id": 15404, + "id": 15422, "properties": { "east": "none", "north": "tall", @@ -94223,211 +97795,13 @@ "west": "tall" } }, - { - "id": 15405, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15406, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15407, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15408, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15409, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15410, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15411, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15412, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15413, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15414, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15415, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15416, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15417, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15418, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15419, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15420, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15421, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15422, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15423, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94437,8 +97811,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94448,8 +97822,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94459,8 +97833,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94470,8 +97844,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -94481,8 +97855,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -94492,8 +97866,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -94503,8 +97877,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -94514,8 +97888,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -94525,8 +97899,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94536,8 +97910,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94547,8 +97921,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94558,8 +97932,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94569,8 +97943,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94580,8 +97954,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94591,8 +97965,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94602,8 +97976,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -94613,8 +97987,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -94623,9 +97997,9 @@ "id": 15441, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -94634,9 +98008,9 @@ "id": 15442, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -94645,9 +98019,9 @@ "id": 15443, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -94656,9 +98030,9 @@ "id": 15444, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94667,9 +98041,9 @@ "id": 15445, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94678,9 +98052,9 @@ "id": 15446, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94689,9 +98063,9 @@ "id": 15447, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94700,9 +98074,9 @@ "id": 15448, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94711,9 +98085,9 @@ "id": 15449, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94722,9 +98096,9 @@ "id": 15450, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94733,9 +98107,9 @@ "id": 15451, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -94744,9 +98118,9 @@ "id": 15452, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -94755,9 +98129,9 @@ "id": 15453, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -94766,9 +98140,9 @@ "id": 15454, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -94777,9 +98151,9 @@ "id": 15455, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -94788,9 +98162,9 @@ "id": 15456, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94799,9 +98173,9 @@ "id": 15457, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94810,9 +98184,9 @@ "id": 15458, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94822,8 +98196,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94833,8 +98207,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94844,8 +98218,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94855,8 +98229,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94866,8 +98240,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -94877,8 +98251,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -94888,8 +98262,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -94899,8 +98273,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -94910,8 +98284,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -94921,8 +98295,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -94932,8 +98306,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -94943,8 +98317,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -94954,8 +98328,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -94965,8 +98339,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -94976,8 +98350,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -94987,8 +98361,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -94998,8 +98372,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -95009,8 +98383,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -95019,9 +98393,9 @@ "id": 15477, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -95030,9 +98404,9 @@ "id": 15478, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -95041,9 +98415,9 @@ "id": 15479, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -95052,9 +98426,9 @@ "id": 15480, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -95063,9 +98437,9 @@ "id": 15481, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -95074,9 +98448,9 @@ "id": 15482, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -95085,9 +98459,9 @@ "id": 15483, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -95096,9 +98470,9 @@ "id": 15484, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -95107,9 +98481,9 @@ "id": 15485, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -95118,9 +98492,9 @@ "id": 15486, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -95129,9 +98503,9 @@ "id": 15487, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -95140,9 +98514,9 @@ "id": 15488, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -95151,9 +98525,9 @@ "id": 15489, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -95162,9 +98536,9 @@ "id": 15490, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -95173,9 +98547,9 @@ "id": 15491, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -95184,9 +98558,9 @@ "id": 15492, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -95195,9 +98569,9 @@ "id": 15493, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -95206,9 +98580,9 @@ "id": 15494, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -95218,8 +98592,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -95229,8 +98603,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -95240,8 +98614,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -95251,8 +98625,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -95262,8 +98636,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -95273,8 +98647,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -95284,8 +98658,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -95295,8 +98669,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -95306,8 +98680,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -95317,8 +98691,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -95328,8 +98702,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -95339,8 +98713,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -95350,8 +98724,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -95361,8 +98735,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -95372,8 +98746,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -95383,14 +98757,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15511, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15512, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15513, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15514, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15515, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15516, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15517, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15518, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15519, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15520, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15521, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15522, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15523, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15524, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15525, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15526, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15527, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15528, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15529, "properties": { "east": "low", "north": "tall", @@ -95401,7 +98973,7 @@ } }, { - "id": 15512, + "id": 15530, "properties": { "east": "low", "north": "tall", @@ -95411,211 +98983,13 @@ "west": "tall" } }, - { - "id": 15513, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15514, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15515, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15516, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15517, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15518, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15519, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15520, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15521, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15522, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15523, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15524, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15525, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15526, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15527, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15528, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15529, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15530, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15531, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -95625,8 +98999,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -95636,8 +99010,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -95647,8 +99021,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -95658,8 +99032,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -95669,8 +99043,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -95680,8 +99054,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -95691,8 +99065,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -95702,8 +99076,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -95713,8 +99087,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -95724,8 +99098,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -95735,8 +99109,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -95746,8 +99120,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -95757,8 +99131,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -95768,8 +99142,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -95779,14 +99153,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15547, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15548, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15549, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15550, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15551, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15552, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15553, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15554, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15555, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15556, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15557, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15558, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15559, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15560, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15561, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15562, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15563, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15564, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15565, "properties": { "east": "tall", "north": "none", @@ -95797,7 +99369,7 @@ } }, { - "id": 15548, + "id": 15566, "properties": { "east": "tall", "north": "none", @@ -95807,211 +99379,13 @@ "west": "tall" } }, - { - "id": 15549, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15550, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15551, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15552, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15553, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15554, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15555, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15556, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15557, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15558, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15559, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15560, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15561, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15562, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15563, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15564, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15565, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15566, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15567, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -96021,8 +99395,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -96032,8 +99406,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -96043,8 +99417,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -96054,8 +99428,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -96065,8 +99439,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -96076,8 +99450,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -96087,8 +99461,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -96098,8 +99472,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -96109,8 +99483,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -96120,8 +99494,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -96131,8 +99505,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -96142,8 +99516,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -96153,8 +99527,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -96164,8 +99538,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -96175,14 +99549,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15583, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15584, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15585, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15586, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15587, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15588, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15589, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15590, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15591, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15592, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15593, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15594, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15595, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15596, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15597, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15598, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15599, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15600, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15601, "properties": { "east": "tall", "north": "low", @@ -96193,7 +99765,7 @@ } }, { - "id": 15584, + "id": 15602, "properties": { "east": "tall", "north": "low", @@ -96203,211 +99775,13 @@ "west": "tall" } }, - { - "id": 15585, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15586, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15587, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15588, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15589, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15590, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15591, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15592, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15593, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15594, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15595, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15596, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15597, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15598, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15599, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15600, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15601, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15602, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15603, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -96417,8 +99791,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -96428,8 +99802,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -96439,8 +99813,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -96450,8 +99824,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -96461,8 +99835,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -96472,8 +99846,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -96483,8 +99857,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -96494,8 +99868,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -96505,8 +99879,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -96516,8 +99890,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -96527,14 +99901,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 15615, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15616, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15617, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15618, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15619, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15620, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15621, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15622, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15623, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15624, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15625, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15626, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15627, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15628, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15629, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15630, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15631, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15632, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15633, "properties": { "east": "tall", "north": "tall", @@ -96545,7 +100117,7 @@ } }, { - "id": 15616, + "id": 15634, "properties": { "east": "tall", "north": "tall", @@ -96556,7 +100128,7 @@ } }, { - "id": 15617, + "id": 15635, "properties": { "east": "tall", "north": "tall", @@ -96567,7 +100139,7 @@ } }, { - "id": 15618, + "id": 15636, "properties": { "east": "tall", "north": "tall", @@ -96578,7 +100150,7 @@ } }, { - "id": 15619, + "id": 15637, "properties": { "east": "tall", "north": "tall", @@ -96589,7 +100161,7 @@ } }, { - "id": 15620, + "id": 15638, "properties": { "east": "tall", "north": "tall", @@ -96605,7 +100177,7 @@ "states": [ { "default": true, - "id": 2001 + "id": 2005 } ] }, @@ -96664,97 +100236,97 @@ "states": [ { "default": true, - "id": 10726, + "id": 10730, "properties": { "rotation": "0" } }, { - "id": 10727, + "id": 10731, "properties": { "rotation": "1" } }, { - "id": 10728, + "id": 10732, "properties": { "rotation": "2" } }, { - "id": 10729, + "id": 10733, "properties": { "rotation": "3" } }, { - "id": 10730, + "id": 10734, "properties": { "rotation": "4" } }, { - "id": 10731, + "id": 10735, "properties": { "rotation": "5" } }, { - "id": 10732, + "id": 10736, "properties": { "rotation": "6" } }, { - "id": 10733, + "id": 10737, "properties": { "rotation": "7" } }, { - "id": 10734, + "id": 10738, "properties": { "rotation": "8" } }, { - "id": 10735, + "id": 10739, "properties": { "rotation": "9" } }, { - "id": 10736, + "id": 10740, "properties": { "rotation": "10" } }, { - "id": 10737, + "id": 10741, "properties": { "rotation": "11" } }, { - "id": 10738, + "id": 10742, "properties": { "rotation": "12" } }, { - "id": 10739, + "id": 10743, "properties": { "rotation": "13" } }, { - "id": 10740, + "id": 10744, "properties": { "rotation": "14" } }, { - "id": 10741, + "id": 10745, "properties": { "rotation": "15" } @@ -96780,7 +100352,7 @@ }, "states": [ { - "id": 1796, + "id": 1800, "properties": { "facing": "north", "occupied": "true", @@ -96788,7 +100360,7 @@ } }, { - "id": 1797, + "id": 1801, "properties": { "facing": "north", "occupied": "true", @@ -96796,7 +100368,7 @@ } }, { - "id": 1798, + "id": 1802, "properties": { "facing": "north", "occupied": "false", @@ -96805,49 +100377,17 @@ }, { "default": true, - "id": 1799, + "id": 1803, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1800, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1801, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1802, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1803, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1804, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -96855,7 +100395,7 @@ { "id": 1805, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -96863,7 +100403,7 @@ { "id": 1806, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -96871,7 +100411,7 @@ { "id": 1807, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -96879,7 +100419,7 @@ { "id": 1808, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -96887,7 +100427,7 @@ { "id": 1809, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -96895,13 +100435,45 @@ { "id": 1810, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1811, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1812, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1813, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1814, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1815, "properties": { "facing": "east", "occupied": "false", @@ -96929,7 +100501,7 @@ }, "states": [ { - "id": 20694, + "id": 20712, "properties": { "candles": "1", "lit": "true", @@ -96937,7 +100509,7 @@ } }, { - "id": 20695, + "id": 20713, "properties": { "candles": "1", "lit": "true", @@ -96945,7 +100517,7 @@ } }, { - "id": 20696, + "id": 20714, "properties": { "candles": "1", "lit": "false", @@ -96954,7 +100526,7 @@ }, { "default": true, - "id": 20697, + "id": 20715, "properties": { "candles": "1", "lit": "false", @@ -96962,7 +100534,7 @@ } }, { - "id": 20698, + "id": 20716, "properties": { "candles": "2", "lit": "true", @@ -96970,7 +100542,7 @@ } }, { - "id": 20699, + "id": 20717, "properties": { "candles": "2", "lit": "true", @@ -96978,7 +100550,7 @@ } }, { - "id": 20700, + "id": 20718, "properties": { "candles": "2", "lit": "false", @@ -96986,7 +100558,7 @@ } }, { - "id": 20701, + "id": 20719, "properties": { "candles": "2", "lit": "false", @@ -96994,7 +100566,7 @@ } }, { - "id": 20702, + "id": 20720, "properties": { "candles": "3", "lit": "true", @@ -97002,7 +100574,7 @@ } }, { - "id": 20703, + "id": 20721, "properties": { "candles": "3", "lit": "true", @@ -97010,7 +100582,7 @@ } }, { - "id": 20704, + "id": 20722, "properties": { "candles": "3", "lit": "false", @@ -97018,7 +100590,7 @@ } }, { - "id": 20705, + "id": 20723, "properties": { "candles": "3", "lit": "false", @@ -97026,7 +100598,7 @@ } }, { - "id": 20706, + "id": 20724, "properties": { "candles": "4", "lit": "true", @@ -97034,7 +100606,7 @@ } }, { - "id": 20707, + "id": 20725, "properties": { "candles": "4", "lit": "true", @@ -97042,7 +100614,7 @@ } }, { - "id": 20708, + "id": 20726, "properties": { "candles": "4", "lit": "false", @@ -97050,7 +100622,7 @@ } }, { - "id": 20709, + "id": 20727, "properties": { "candles": "4", "lit": "false", @@ -97068,14 +100640,14 @@ }, "states": [ { - "id": 20854, + "id": 20872, "properties": { "lit": "true" } }, { "default": true, - "id": 20855, + "id": 20873, "properties": { "lit": "false" } @@ -97086,7 +100658,7 @@ "states": [ { "default": true, - "id": 10590 + "id": 10594 } ] }, @@ -97094,7 +100666,7 @@ "states": [ { "default": true, - "id": 12579 + "id": 12594 } ] }, @@ -97102,7 +100674,7 @@ "states": [ { "default": true, - "id": 12595 + "id": 12610 } ] }, @@ -97118,25 +100690,25 @@ "states": [ { "default": true, - "id": 12536, + "id": 12551, "properties": { "facing": "north" } }, { - "id": 12537, + "id": 12552, "properties": { "facing": "south" } }, { - "id": 12538, + "id": 12553, "properties": { "facing": "west" } }, { - "id": 12539, + "id": 12554, "properties": { "facing": "east" } @@ -97156,38 +100728,38 @@ }, "states": [ { - "id": 12454, + "id": 12469, "properties": { "facing": "north" } }, { - "id": 12455, + "id": 12470, "properties": { "facing": "east" } }, { - "id": 12456, + "id": 12471, "properties": { "facing": "south" } }, { - "id": 12457, + "id": 12472, "properties": { "facing": "west" } }, { "default": true, - "id": 12458, + "id": 12473, "properties": { "facing": "up" } }, { - "id": 12459, + "id": 12474, "properties": { "facing": "down" } @@ -97198,7 +100770,7 @@ "states": [ { "default": true, - "id": 5949 + "id": 5953 } ] }, @@ -97226,52 +100798,12 @@ ] }, "states": [ - { - "id": 9452, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9453, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9454, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9455, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9456, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -97281,7 +100813,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -97291,7 +100823,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -97301,7 +100833,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -97310,8 +100842,8 @@ "id": 9460, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -97320,8 +100852,8 @@ "id": 9461, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -97330,8 +100862,8 @@ "id": 9462, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -97340,8 +100872,8 @@ "id": 9463, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -97351,7 +100883,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -97361,7 +100893,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -97371,7 +100903,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -97381,7 +100913,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -97389,9 +100921,9 @@ { "id": 9468, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -97399,9 +100931,9 @@ { "id": 9469, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -97409,9 +100941,9 @@ { "id": 9470, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -97419,9 +100951,9 @@ { "id": 9471, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -97431,7 +100963,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -97441,7 +100973,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -97451,7 +100983,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -97461,7 +100993,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -97470,8 +101002,8 @@ "id": 9476, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -97480,8 +101012,8 @@ "id": 9477, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -97490,8 +101022,8 @@ "id": 9478, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -97500,8 +101032,8 @@ "id": 9479, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -97511,7 +101043,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -97521,13 +101053,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9482, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9483, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9484, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9485, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9486, "properties": { "east": "false", "north": "false", @@ -97538,7 +101110,7 @@ }, { "default": true, - "id": 9483, + "id": 9487, "properties": { "east": "false", "north": "false", @@ -97553,7 +101125,7 @@ "states": [ { "default": true, - "id": 9219 + "id": 9223 } ] }, @@ -97569,25 +101141,25 @@ "states": [ { "default": true, - "id": 10898, + "id": 10902, "properties": { "facing": "north" } }, { - "id": 10899, + "id": 10903, "properties": { "facing": "south" } }, { - "id": 10900, + "id": 10904, "properties": { "facing": "west" } }, { - "id": 10901, + "id": 10905, "properties": { "facing": "east" } @@ -97598,7 +101170,7 @@ "states": [ { "default": true, - "id": 2050 + "id": 2054 } ] }, @@ -97626,97 +101198,97 @@ "states": [ { "default": true, - "id": 10822, + "id": 10826, "properties": { "rotation": "0" } }, { - "id": 10823, + "id": 10827, "properties": { "rotation": "1" } }, { - "id": 10824, + "id": 10828, "properties": { "rotation": "2" } }, { - "id": 10825, + "id": 10829, "properties": { "rotation": "3" } }, { - "id": 10826, + "id": 10830, "properties": { "rotation": "4" } }, { - "id": 10827, + "id": 10831, "properties": { "rotation": "5" } }, { - "id": 10828, + "id": 10832, "properties": { "rotation": "6" } }, { - "id": 10829, + "id": 10833, "properties": { "rotation": "7" } }, { - "id": 10830, + "id": 10834, "properties": { "rotation": "8" } }, { - "id": 10831, + "id": 10835, "properties": { "rotation": "9" } }, { - "id": 10832, + "id": 10836, "properties": { "rotation": "10" } }, { - "id": 10833, + "id": 10837, "properties": { "rotation": "11" } }, { - "id": 10834, + "id": 10838, "properties": { "rotation": "12" } }, { - "id": 10835, + "id": 10839, "properties": { "rotation": "13" } }, { - "id": 10836, + "id": 10840, "properties": { "rotation": "14" } }, { - "id": 10837, + "id": 10841, "properties": { "rotation": "15" } @@ -97742,7 +101314,7 @@ }, "states": [ { - "id": 1892, + "id": 1896, "properties": { "facing": "north", "occupied": "true", @@ -97750,7 +101322,7 @@ } }, { - "id": 1893, + "id": 1897, "properties": { "facing": "north", "occupied": "true", @@ -97758,7 +101330,7 @@ } }, { - "id": 1894, + "id": 1898, "properties": { "facing": "north", "occupied": "false", @@ -97767,49 +101339,17 @@ }, { "default": true, - "id": 1895, + "id": 1899, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1896, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1897, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1898, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1899, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1900, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -97817,7 +101357,7 @@ { "id": 1901, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -97825,7 +101365,7 @@ { "id": 1902, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -97833,7 +101373,7 @@ { "id": 1903, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -97841,7 +101381,7 @@ { "id": 1904, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -97849,7 +101389,7 @@ { "id": 1905, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -97857,13 +101397,45 @@ { "id": 1906, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1907, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1908, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1909, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1910, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1911, "properties": { "facing": "east", "occupied": "false", @@ -97891,7 +101463,7 @@ }, "states": [ { - "id": 20790, + "id": 20808, "properties": { "candles": "1", "lit": "true", @@ -97899,7 +101471,7 @@ } }, { - "id": 20791, + "id": 20809, "properties": { "candles": "1", "lit": "true", @@ -97907,7 +101479,7 @@ } }, { - "id": 20792, + "id": 20810, "properties": { "candles": "1", "lit": "false", @@ -97916,7 +101488,7 @@ }, { "default": true, - "id": 20793, + "id": 20811, "properties": { "candles": "1", "lit": "false", @@ -97924,7 +101496,7 @@ } }, { - "id": 20794, + "id": 20812, "properties": { "candles": "2", "lit": "true", @@ -97932,7 +101504,7 @@ } }, { - "id": 20795, + "id": 20813, "properties": { "candles": "2", "lit": "true", @@ -97940,7 +101512,7 @@ } }, { - "id": 20796, + "id": 20814, "properties": { "candles": "2", "lit": "false", @@ -97948,7 +101520,7 @@ } }, { - "id": 20797, + "id": 20815, "properties": { "candles": "2", "lit": "false", @@ -97956,7 +101528,7 @@ } }, { - "id": 20798, + "id": 20816, "properties": { "candles": "3", "lit": "true", @@ -97964,7 +101536,7 @@ } }, { - "id": 20799, + "id": 20817, "properties": { "candles": "3", "lit": "true", @@ -97972,7 +101544,7 @@ } }, { - "id": 20800, + "id": 20818, "properties": { "candles": "3", "lit": "false", @@ -97980,7 +101552,7 @@ } }, { - "id": 20801, + "id": 20819, "properties": { "candles": "3", "lit": "false", @@ -97988,7 +101560,7 @@ } }, { - "id": 20802, + "id": 20820, "properties": { "candles": "4", "lit": "true", @@ -97996,7 +101568,7 @@ } }, { - "id": 20803, + "id": 20821, "properties": { "candles": "4", "lit": "true", @@ -98004,7 +101576,7 @@ } }, { - "id": 20804, + "id": 20822, "properties": { "candles": "4", "lit": "false", @@ -98012,7 +101584,7 @@ } }, { - "id": 20805, + "id": 20823, "properties": { "candles": "4", "lit": "false", @@ -98030,14 +101602,14 @@ }, "states": [ { - "id": 20866, + "id": 20884, "properties": { "lit": "true" } }, { "default": true, - "id": 20867, + "id": 20885, "properties": { "lit": "false" } @@ -98048,7 +101620,7 @@ "states": [ { "default": true, - "id": 10596 + "id": 10600 } ] }, @@ -98056,7 +101628,7 @@ "states": [ { "default": true, - "id": 12585 + "id": 12600 } ] }, @@ -98064,7 +101636,7 @@ "states": [ { "default": true, - "id": 12601 + "id": 12616 } ] }, @@ -98080,25 +101652,25 @@ "states": [ { "default": true, - "id": 12560, + "id": 12575, "properties": { "facing": "north" } }, { - "id": 12561, + "id": 12576, "properties": { "facing": "south" } }, { - "id": 12562, + "id": 12577, "properties": { "facing": "west" } }, { - "id": 12563, + "id": 12578, "properties": { "facing": "east" } @@ -98118,38 +101690,38 @@ }, "states": [ { - "id": 12490, + "id": 12505, "properties": { "facing": "north" } }, { - "id": 12491, + "id": 12506, "properties": { "facing": "east" } }, { - "id": 12492, + "id": 12507, "properties": { "facing": "south" } }, { - "id": 12493, + "id": 12508, "properties": { "facing": "west" } }, { "default": true, - "id": 12494, + "id": 12509, "properties": { "facing": "up" } }, { - "id": 12495, + "id": 12510, "properties": { "facing": "down" } @@ -98160,7 +101732,7 @@ "states": [ { "default": true, - "id": 5955 + "id": 5959 } ] }, @@ -98188,52 +101760,12 @@ ] }, "states": [ - { - "id": 9644, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9645, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9646, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9647, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9648, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -98243,7 +101775,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -98253,7 +101785,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -98263,7 +101795,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -98272,8 +101804,8 @@ "id": 9652, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -98282,8 +101814,8 @@ "id": 9653, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -98292,8 +101824,8 @@ "id": 9654, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -98302,8 +101834,8 @@ "id": 9655, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -98313,7 +101845,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -98323,7 +101855,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -98333,7 +101865,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -98343,7 +101875,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -98351,9 +101883,9 @@ { "id": 9660, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -98361,9 +101893,9 @@ { "id": 9661, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -98371,9 +101903,9 @@ { "id": 9662, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -98381,9 +101913,9 @@ { "id": 9663, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -98393,7 +101925,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -98403,7 +101935,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -98413,7 +101945,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -98423,7 +101955,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -98432,8 +101964,8 @@ "id": 9668, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -98442,8 +101974,8 @@ "id": 9669, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -98452,8 +101984,8 @@ "id": 9670, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -98462,8 +101994,8 @@ "id": 9671, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -98473,7 +102005,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -98483,13 +102015,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9674, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9675, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9676, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9677, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9678, "properties": { "east": "false", "north": "false", @@ -98500,7 +102072,7 @@ }, { "default": true, - "id": 9675, + "id": 9679, "properties": { "east": "false", "north": "false", @@ -98515,7 +102087,7 @@ "states": [ { "default": true, - "id": 9225 + "id": 9229 } ] }, @@ -98531,25 +102103,25 @@ "states": [ { "default": true, - "id": 10922, + "id": 10926, "properties": { "facing": "north" } }, { - "id": 10923, + "id": 10927, "properties": { "facing": "south" } }, { - "id": 10924, + "id": 10928, "properties": { "facing": "west" } }, { - "id": 10925, + "id": 10929, "properties": { "facing": "east" } @@ -98560,7 +102132,7 @@ "states": [ { "default": true, - "id": 2056 + "id": 2060 } ] }, @@ -98580,28 +102152,28 @@ }, "states": [ { - "id": 18279, + "id": 18297, "properties": { "face": "floor", "facing": "north" } }, { - "id": 18280, + "id": 18298, "properties": { "face": "floor", "facing": "south" } }, { - "id": 18281, + "id": 18299, "properties": { "face": "floor", "facing": "west" } }, { - "id": 18282, + "id": 18300, "properties": { "face": "floor", "facing": "east" @@ -98609,56 +102181,56 @@ }, { "default": true, - "id": 18283, + "id": 18301, "properties": { "face": "wall", "facing": "north" } }, { - "id": 18284, + "id": 18302, "properties": { "face": "wall", "facing": "south" } }, { - "id": 18285, + "id": 18303, "properties": { "face": "wall", "facing": "west" } }, { - "id": 18286, + "id": 18304, "properties": { "face": "wall", "facing": "east" } }, { - "id": 18287, + "id": 18305, "properties": { "face": "ceiling", "facing": "north" } }, { - "id": 18288, + "id": 18306, "properties": { "face": "ceiling", "facing": "south" } }, { - "id": 18289, + "id": 18307, "properties": { "face": "ceiling", "facing": "west" } }, { - "id": 18290, + "id": 18308, "properties": { "face": "ceiling", "facing": "east" @@ -98675,14 +102247,14 @@ }, "states": [ { - "id": 22043, + "id": 22445, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 22044, + "id": 22446, "properties": { "waterlogged": "false" } @@ -98699,20 +102271,20 @@ }, "states": [ { - "id": 10580, + "id": 10584, "properties": { "axis": "x" } }, { "default": true, - "id": 10581, + "id": 10585, "properties": { "axis": "y" } }, { - "id": 10582, + "id": 10586, "properties": { "axis": "z" } @@ -98743,97 +102315,97 @@ "states": [ { "default": true, - "id": 9015, + "id": 9019, "properties": { "power": "0" } }, { - "id": 9016, + "id": 9020, "properties": { "power": "1" } }, { - "id": 9017, + "id": 9021, "properties": { "power": "2" } }, { - "id": 9018, + "id": 9022, "properties": { "power": "3" } }, { - "id": 9019, + "id": 9023, "properties": { "power": "4" } }, { - "id": 9020, + "id": 9024, "properties": { "power": "5" } }, { - "id": 9021, + "id": 9025, "properties": { "power": "6" } }, { - "id": 9022, + "id": 9026, "properties": { "power": "7" } }, { - "id": 9023, + "id": 9027, "properties": { "power": "8" } }, { - "id": 9024, + "id": 9028, "properties": { "power": "9" } }, { - "id": 9025, + "id": 9029, "properties": { "power": "10" } }, { - "id": 9026, + "id": 9030, "properties": { "power": "11" } }, { - "id": 9027, + "id": 9031, "properties": { "power": "12" } }, { - "id": 9028, + "id": 9032, "properties": { "power": "13" } }, { - "id": 9029, + "id": 9033, "properties": { "power": "14" } }, { - "id": 9030, + "id": 9034, "properties": { "power": "15" } @@ -98844,7 +102416,7 @@ "states": [ { "default": true, - "id": 19286 + "id": 19304 } ] }, @@ -98852,7 +102424,7 @@ "states": [ { "default": true, - "id": 19287 + "id": 19305 } ] }, @@ -98873,70 +102445,70 @@ "states": [ { "default": true, - "id": 9081, + "id": 9085, "properties": { "enabled": "true", "facing": "down" } }, { - "id": 9082, + "id": 9086, "properties": { "enabled": "true", "facing": "north" } }, { - "id": 9083, + "id": 9087, "properties": { "enabled": "true", "facing": "south" } }, { - "id": 9084, + "id": 9088, "properties": { "enabled": "true", "facing": "west" } }, { - "id": 9085, + "id": 9089, "properties": { "enabled": "true", "facing": "east" } }, { - "id": 9086, + "id": 9090, "properties": { "enabled": "false", "facing": "down" } }, { - "id": 9087, + "id": 9091, "properties": { "enabled": "false", "facing": "north" } }, { - "id": 9088, + "id": 9092, "properties": { "enabled": "false", "facing": "south" } }, { - "id": 9089, + "id": 9093, "properties": { "enabled": "false", "facing": "west" } }, { - "id": 9090, + "id": 9094, "properties": { "enabled": "false", "facing": "east" @@ -98954,13 +102526,13 @@ "states": [ { "default": true, - "id": 12672, + "id": 12690, "properties": { "waterlogged": "true" } }, { - "id": 12673, + "id": 12691, "properties": { "waterlogged": "false" } @@ -98971,7 +102543,7 @@ "states": [ { "default": true, - "id": 12653 + "id": 12671 } ] }, @@ -98985,13 +102557,13 @@ "states": [ { "default": true, - "id": 12692, + "id": 12710, "properties": { "waterlogged": "true" } }, { - "id": 12693, + "id": 12711, "properties": { "waterlogged": "false" } @@ -99014,56 +102586,56 @@ "states": [ { "default": true, - "id": 12766, + "id": 12784, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 12767, + "id": 12785, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 12768, + "id": 12786, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 12769, + "id": 12787, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 12770, + "id": 12788, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 12771, + "id": 12789, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 12772, + "id": 12790, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 12773, + "id": 12791, "properties": { "facing": "east", "waterlogged": "false" @@ -99075,7 +102647,7 @@ "states": [ { "default": true, - "id": 5776 + "id": 5780 } ] }, @@ -99083,7 +102655,7 @@ "states": [ { "default": true, - "id": 6545 + "id": 6549 } ] }, @@ -99091,7 +102663,7 @@ "states": [ { "default": true, - "id": 6541 + "id": 6545 } ] }, @@ -99099,7 +102671,7 @@ "states": [ { "default": true, - "id": 6544 + "id": 6548 } ] }, @@ -99113,20 +102685,20 @@ }, "states": [ { - "id": 23697, + "id": 24099, "properties": { "axis": "x" } }, { "default": true, - "id": 23698, + "id": 24100, "properties": { "axis": "y" } }, { - "id": 23699, + "id": 24101, "properties": { "axis": "z" } @@ -99137,7 +102709,7 @@ "states": [ { "default": true, - "id": 6543 + "id": 6547 } ] }, @@ -99145,7 +102717,7 @@ "states": [ { "default": true, - "id": 6540 + "id": 6544 } ] }, @@ -99153,7 +102725,7 @@ "states": [ { "default": true, - "id": 6542 + "id": 6546 } ] }, @@ -99181,52 +102753,12 @@ ] }, "states": [ - { - "id": 6738, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6739, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6740, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6741, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 6742, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -99236,7 +102768,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -99246,7 +102778,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -99256,7 +102788,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -99265,8 +102797,8 @@ "id": 6746, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -99275,8 +102807,8 @@ "id": 6747, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -99285,8 +102817,8 @@ "id": 6748, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -99295,8 +102827,8 @@ "id": 6749, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -99306,7 +102838,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -99316,7 +102848,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -99326,7 +102858,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -99336,7 +102868,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -99344,9 +102876,9 @@ { "id": 6754, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -99354,9 +102886,9 @@ { "id": 6755, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -99364,9 +102896,9 @@ { "id": 6756, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -99374,9 +102906,9 @@ { "id": 6757, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -99386,7 +102918,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -99396,7 +102928,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -99406,7 +102938,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -99416,7 +102948,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -99425,8 +102957,8 @@ "id": 6762, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -99435,8 +102967,8 @@ "id": 6763, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -99445,8 +102977,8 @@ "id": 6764, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -99455,8 +102987,8 @@ "id": 6765, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -99466,7 +102998,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -99476,13 +103008,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 6768, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6769, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6770, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6771, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6772, "properties": { "east": "false", "north": "false", @@ -99493,7 +103065,7 @@ }, { "default": true, - "id": 6769, + "id": 6773, "properties": { "east": "false", "north": "false", @@ -99508,7 +103080,7 @@ "states": [ { "default": true, - "id": 2088 + "id": 2092 } ] }, @@ -99538,52 +103110,12 @@ ] }, "states": [ - { - "id": 5648, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5649, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5650, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5651, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 5652, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -99593,7 +103125,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -99603,7 +103135,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -99613,13 +103145,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 5656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5660, "properties": { "facing": "north", "half": "lower", @@ -99629,7 +103201,7 @@ } }, { - "id": 5657, + "id": 5661, "properties": { "facing": "north", "half": "lower", @@ -99639,7 +103211,7 @@ } }, { - "id": 5658, + "id": 5662, "properties": { "facing": "north", "half": "lower", @@ -99650,51 +103222,11 @@ }, { "default": true, - "id": 5659, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5660, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5661, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5662, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 5663, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -99702,9 +103234,9 @@ { "id": 5664, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -99712,9 +103244,9 @@ { "id": 5665, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -99722,9 +103254,9 @@ { "id": 5666, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -99732,9 +103264,9 @@ { "id": 5667, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -99744,7 +103276,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -99754,7 +103286,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -99764,7 +103296,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -99774,7 +103306,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -99783,8 +103315,8 @@ "id": 5672, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -99793,8 +103325,8 @@ "id": 5673, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -99803,8 +103335,8 @@ "id": 5674, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -99813,8 +103345,8 @@ "id": 5675, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -99824,7 +103356,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -99834,7 +103366,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -99844,7 +103376,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -99854,7 +103386,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -99862,9 +103394,9 @@ { "id": 5680, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -99872,9 +103404,9 @@ { "id": 5681, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -99882,9 +103414,9 @@ { "id": 5682, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -99892,9 +103424,9 @@ { "id": 5683, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -99904,7 +103436,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -99914,7 +103446,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -99924,7 +103456,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -99934,7 +103466,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -99943,8 +103475,8 @@ "id": 5688, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -99953,8 +103485,8 @@ "id": 5689, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -99963,8 +103495,8 @@ "id": 5690, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -99973,8 +103505,8 @@ "id": 5691, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -99984,7 +103516,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -99994,7 +103526,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -100004,7 +103536,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -100014,7 +103546,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -100022,9 +103554,9 @@ { "id": 5696, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -100032,9 +103564,9 @@ { "id": 5697, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -100042,9 +103574,9 @@ { "id": 5698, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -100052,9 +103584,9 @@ { "id": 5699, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -100064,7 +103596,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -100074,7 +103606,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -100084,7 +103616,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -100094,7 +103626,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -100103,8 +103635,8 @@ "id": 5704, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -100113,8 +103645,8 @@ "id": 5705, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -100123,8 +103655,8 @@ "id": 5706, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -100133,8 +103665,8 @@ "id": 5707, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -100144,7 +103676,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -100154,7 +103686,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -100164,13 +103696,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 5711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5715, "properties": { "facing": "east", "half": "lower", @@ -100185,7 +103757,7 @@ "states": [ { "default": true, - "id": 121 + "id": 125 } ] }, @@ -100215,52 +103787,12 @@ ] }, "states": [ - { - "id": 10254, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10255, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10256, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10257, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 10258, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100270,7 +103802,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100280,7 +103812,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100290,7 +103822,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100299,8 +103831,8 @@ "id": 10262, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100309,8 +103841,8 @@ "id": 10263, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100319,8 +103851,8 @@ "id": 10264, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100329,8 +103861,8 @@ "id": 10265, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100340,7 +103872,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100350,13 +103882,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 10268, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10269, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10270, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10271, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10272, "properties": { "facing": "north", "half": "bottom", @@ -100367,7 +103939,7 @@ }, { "default": true, - "id": 10269, + "id": 10273, "properties": { "facing": "north", "half": "bottom", @@ -100376,52 +103948,12 @@ "waterlogged": "false" } }, - { - "id": 10270, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10271, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10272, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10273, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 10274, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100431,7 +103963,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100441,7 +103973,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100451,7 +103983,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100460,8 +103992,8 @@ "id": 10278, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100470,8 +104002,8 @@ "id": 10279, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100480,8 +104012,8 @@ "id": 10280, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100490,8 +104022,8 @@ "id": 10281, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100501,7 +104033,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100511,7 +104043,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100521,7 +104053,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100531,7 +104063,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100539,9 +104071,9 @@ { "id": 10286, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100549,9 +104081,9 @@ { "id": 10287, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100559,9 +104091,9 @@ { "id": 10288, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100569,9 +104101,9 @@ { "id": 10289, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100581,7 +104113,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100591,7 +104123,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100601,7 +104133,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100611,7 +104143,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100620,8 +104152,8 @@ "id": 10294, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100630,8 +104162,8 @@ "id": 10295, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100640,8 +104172,8 @@ "id": 10296, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100650,8 +104182,8 @@ "id": 10297, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100661,7 +104193,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100671,7 +104203,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100681,7 +104213,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100691,7 +104223,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100699,9 +104231,9 @@ { "id": 10302, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100709,9 +104241,9 @@ { "id": 10303, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100719,9 +104251,9 @@ { "id": 10304, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100729,9 +104261,9 @@ { "id": 10305, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100741,7 +104273,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100751,7 +104283,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100761,7 +104293,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -100771,7 +104303,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -100780,8 +104312,8 @@ "id": 10310, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -100790,8 +104322,8 @@ "id": 10311, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -100800,8 +104332,8 @@ "id": 10312, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -100810,8 +104342,8 @@ "id": 10313, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -100821,7 +104353,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -100831,7 +104363,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -100841,13 +104373,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 10317, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10318, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10319, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10320, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10321, "properties": { "facing": "east", "half": "bottom", @@ -100870,25 +104442,25 @@ "states": [ { "default": true, - "id": 5867, + "id": 5871, "properties": { "facing": "north" } }, { - "id": 5868, + "id": 5872, "properties": { "facing": "south" } }, { - "id": 5869, + "id": 5873, "properties": { "facing": "west" } }, { - "id": 5870, + "id": 5874, "properties": { "facing": "east" } @@ -100914,74 +104486,74 @@ }, "states": [ { - "id": 19201, + "id": 19219, "properties": { "orientation": "down_east" } }, { - "id": 19202, + "id": 19220, "properties": { "orientation": "down_north" } }, { - "id": 19203, + "id": 19221, "properties": { "orientation": "down_south" } }, { - "id": 19204, + "id": 19222, "properties": { "orientation": "down_west" } }, { - "id": 19205, + "id": 19223, "properties": { "orientation": "up_east" } }, { - "id": 19206, + "id": 19224, "properties": { "orientation": "up_north" } }, { - "id": 19207, + "id": 19225, "properties": { "orientation": "up_south" } }, { - "id": 19208, + "id": 19226, "properties": { "orientation": "up_west" } }, { - "id": 19209, + "id": 19227, "properties": { "orientation": "west_up" } }, { - "id": 19210, + "id": 19228, "properties": { "orientation": "east_up" } }, { "default": true, - "id": 19211, + "id": 19229, "properties": { "orientation": "north_up" } }, { - "id": 19212, + "id": 19230, "properties": { "orientation": "south_up" } @@ -100997,14 +104569,14 @@ }, "states": [ { - "id": 5811, + "id": 5815, "properties": { "has_record": "true" } }, { "default": true, - "id": 5812, + "id": 5816, "properties": { "has_record": "false" } @@ -101030,43 +104602,11 @@ ] }, "states": [ - { - "id": 8679, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8680, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8681, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8682, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 8683, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -101074,7 +104614,7 @@ "id": 8684, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -101082,7 +104622,7 @@ "id": 8685, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -101090,12 +104630,44 @@ "id": 8686, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8687, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8688, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8689, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8690, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8691, "properties": { "face": "wall", "facing": "north", @@ -101104,42 +104676,10 @@ }, { "default": true, - "id": 8688, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8689, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8690, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8691, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 8692, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -101147,7 +104687,7 @@ "id": 8693, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -101155,39 +104695,39 @@ "id": 8694, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8695, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 8696, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 8697, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 8698, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -101195,7 +104735,7 @@ "id": 8699, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -101203,7 +104743,7 @@ "id": 8700, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -101211,12 +104751,44 @@ "id": 8701, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 8702, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8703, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8704, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8705, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8706, "properties": { "face": "ceiling", "facing": "east", @@ -101251,52 +104823,12 @@ ] }, "states": [ - { - "id": 11805, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11806, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11807, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11808, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 11809, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101306,7 +104838,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101316,7 +104848,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101326,13 +104858,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 11813, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11814, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11815, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11816, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11817, "properties": { "facing": "north", "half": "lower", @@ -101342,7 +104914,7 @@ } }, { - "id": 11814, + "id": 11818, "properties": { "facing": "north", "half": "lower", @@ -101352,7 +104924,7 @@ } }, { - "id": 11815, + "id": 11819, "properties": { "facing": "north", "half": "lower", @@ -101363,51 +104935,11 @@ }, { "default": true, - "id": 11816, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11817, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11818, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11819, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 11820, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101415,9 +104947,9 @@ { "id": 11821, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -101425,9 +104957,9 @@ { "id": 11822, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -101435,9 +104967,9 @@ { "id": 11823, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -101445,9 +104977,9 @@ { "id": 11824, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -101457,7 +104989,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101467,7 +104999,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101477,7 +105009,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101487,7 +105019,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101496,8 +105028,8 @@ "id": 11829, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -101506,8 +105038,8 @@ "id": 11830, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -101516,8 +105048,8 @@ "id": 11831, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -101526,8 +105058,8 @@ "id": 11832, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -101537,7 +105069,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101547,7 +105079,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101557,7 +105089,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101567,7 +105099,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101575,9 +105107,9 @@ { "id": 11837, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -101585,9 +105117,9 @@ { "id": 11838, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -101595,9 +105127,9 @@ { "id": 11839, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -101605,9 +105137,9 @@ { "id": 11840, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -101617,7 +105149,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101627,7 +105159,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101637,7 +105169,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101647,7 +105179,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101656,8 +105188,8 @@ "id": 11845, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -101666,8 +105198,8 @@ "id": 11846, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -101676,8 +105208,8 @@ "id": 11847, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -101686,8 +105218,8 @@ "id": 11848, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -101697,7 +105229,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101707,7 +105239,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101717,7 +105249,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101727,7 +105259,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101735,9 +105267,9 @@ { "id": 11853, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -101745,9 +105277,9 @@ { "id": 11854, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -101755,9 +105287,9 @@ { "id": 11855, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -101765,9 +105297,9 @@ { "id": 11856, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -101777,7 +105309,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101787,7 +105319,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101797,7 +105329,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -101807,7 +105339,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -101816,8 +105348,8 @@ "id": 11861, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -101826,8 +105358,8 @@ "id": 11862, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -101836,8 +105368,8 @@ "id": 11863, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -101846,8 +105378,8 @@ "id": 11864, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -101857,7 +105389,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -101867,7 +105399,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -101877,13 +105409,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 11868, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11869, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11870, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11871, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11872, "properties": { "facing": "east", "half": "lower", @@ -101918,52 +105490,12 @@ ] }, "states": [ - { - "id": 11485, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11486, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11487, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11488, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 11489, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -101973,7 +105505,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -101983,7 +105515,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -101993,7 +105525,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -102002,8 +105534,8 @@ "id": 11493, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -102012,8 +105544,8 @@ "id": 11494, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -102022,8 +105554,8 @@ "id": 11495, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -102032,8 +105564,8 @@ "id": 11496, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -102043,7 +105575,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -102053,7 +105585,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -102063,7 +105595,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -102073,7 +105605,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -102081,9 +105613,9 @@ { "id": 11501, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -102091,9 +105623,9 @@ { "id": 11502, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -102101,9 +105633,9 @@ { "id": 11503, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -102111,9 +105643,9 @@ { "id": 11504, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -102123,7 +105655,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -102133,7 +105665,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -102143,7 +105675,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -102153,7 +105685,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -102162,8 +105694,8 @@ "id": 11509, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -102172,8 +105704,8 @@ "id": 11510, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -102182,8 +105714,8 @@ "id": 11511, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -102192,8 +105724,8 @@ "id": 11512, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -102203,7 +105735,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -102213,13 +105745,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 11515, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11516, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11517, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11518, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11519, "properties": { "east": "false", "north": "false", @@ -102230,7 +105802,7 @@ }, { "default": true, - "id": 11516, + "id": 11520, "properties": { "east": "false", "north": "false", @@ -102263,47 +105835,11 @@ ] }, "states": [ - { - "id": 11229, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11230, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11231, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11232, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11233, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -102312,13 +105848,49 @@ "id": 11234, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } }, { "id": 11235, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11236, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11237, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11238, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11239, "properties": { "facing": "north", "in_wall": "false", @@ -102328,7 +105900,7 @@ }, { "default": true, - "id": 11236, + "id": 11240, "properties": { "facing": "north", "in_wall": "false", @@ -102336,47 +105908,11 @@ "powered": "false" } }, - { - "id": 11237, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11238, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11239, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11240, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11241, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -102385,7 +105921,7 @@ "id": 11242, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -102394,7 +105930,7 @@ "id": 11243, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -102403,7 +105939,7 @@ "id": 11244, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -102411,8 +105947,8 @@ { "id": 11245, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "true" } @@ -102420,8 +105956,8 @@ { "id": 11246, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "false" } @@ -102429,8 +105965,8 @@ { "id": 11247, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "true" } @@ -102438,8 +105974,8 @@ { "id": 11248, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "false" } @@ -102448,7 +105984,7 @@ "id": 11249, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -102457,7 +105993,7 @@ "id": 11250, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -102466,7 +106002,7 @@ "id": 11251, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -102475,7 +106011,7 @@ "id": 11252, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -102483,8 +106019,8 @@ { "id": 11253, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "true" } @@ -102492,8 +106028,8 @@ { "id": 11254, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "false" } @@ -102501,8 +106037,8 @@ { "id": 11255, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "true" } @@ -102510,8 +106046,8 @@ { "id": 11256, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "false" } @@ -102520,7 +106056,7 @@ "id": 11257, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -102529,7 +106065,7 @@ "id": 11258, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -102538,13 +106074,49 @@ "id": 11259, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } }, { "id": 11260, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11261, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11262, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11263, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11264, "properties": { "facing": "east", "in_wall": "false", @@ -102584,43 +106156,11 @@ ] }, "states": [ - { - "id": 5150, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5151, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5152, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5153, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 5154, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -102628,7 +106168,7 @@ "id": 5155, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -102636,7 +106176,7 @@ "id": 5156, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -102644,7 +106184,7 @@ "id": 5157, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -102652,7 +106192,7 @@ "id": 5158, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -102660,7 +106200,7 @@ "id": 5159, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -102668,7 +106208,7 @@ "id": 5160, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -102676,7 +106216,7 @@ "id": 5161, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -102684,7 +106224,7 @@ "id": 5162, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -102692,7 +106232,7 @@ "id": 5163, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -102700,7 +106240,7 @@ "id": 5164, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -102708,7 +106248,7 @@ "id": 5165, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -102716,7 +106256,7 @@ "id": 5166, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -102724,7 +106264,7 @@ "id": 5167, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -102732,7 +106272,7 @@ "id": 5168, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -102740,7 +106280,7 @@ "id": 5169, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -102748,7 +106288,7 @@ "id": 5170, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -102756,7 +106296,7 @@ "id": 5171, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -102764,7 +106304,7 @@ "id": 5172, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -102772,7 +106312,7 @@ "id": 5173, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -102780,7 +106320,7 @@ "id": 5174, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -102788,7 +106328,7 @@ "id": 5175, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -102796,7 +106336,7 @@ "id": 5176, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -102804,7 +106344,7 @@ "id": 5177, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -102812,7 +106352,7 @@ "id": 5178, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -102820,7 +106360,7 @@ "id": 5179, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -102828,7 +106368,7 @@ "id": 5180, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -102836,12 +106376,44 @@ "id": 5181, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 5182, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5183, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5184, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5185, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5186, "properties": { "attached": "false", "rotation": "0", @@ -102850,50 +106422,18 @@ }, { "default": true, - "id": 5183, + "id": 5187, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5184, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5185, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5186, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5187, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 5188, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -102901,7 +106441,7 @@ "id": 5189, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -102909,7 +106449,7 @@ "id": 5190, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -102917,7 +106457,7 @@ "id": 5191, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -102925,7 +106465,7 @@ "id": 5192, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -102933,7 +106473,7 @@ "id": 5193, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -102941,7 +106481,7 @@ "id": 5194, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -102949,7 +106489,7 @@ "id": 5195, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -102957,7 +106497,7 @@ "id": 5196, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -102965,7 +106505,7 @@ "id": 5197, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -102973,7 +106513,7 @@ "id": 5198, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -102981,7 +106521,7 @@ "id": 5199, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -102989,7 +106529,7 @@ "id": 5200, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -102997,7 +106537,7 @@ "id": 5201, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -103005,7 +106545,7 @@ "id": 5202, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -103013,7 +106553,7 @@ "id": 5203, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -103021,7 +106561,7 @@ "id": 5204, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -103029,7 +106569,7 @@ "id": 5205, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -103037,7 +106577,7 @@ "id": 5206, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -103045,7 +106585,7 @@ "id": 5207, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -103053,7 +106593,7 @@ "id": 5208, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -103061,7 +106601,7 @@ "id": 5209, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -103069,7 +106609,7 @@ "id": 5210, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -103077,7 +106617,7 @@ "id": 5211, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -103085,12 +106625,44 @@ "id": 5212, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 5213, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5214, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5215, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5216, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5217, "properties": { "attached": "false", "rotation": "15", @@ -103120,42 +106692,10 @@ ] }, "states": [ - { - "id": 317, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 318, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 319, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 320, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 321, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -103163,7 +106703,7 @@ { "id": 322, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -103171,7 +106711,7 @@ { "id": 323, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -103179,7 +106719,7 @@ { "id": 324, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -103187,7 +106727,7 @@ { "id": 325, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -103195,7 +106735,7 @@ { "id": 326, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -103203,7 +106743,7 @@ { "id": 327, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -103211,7 +106751,7 @@ { "id": 328, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -103219,7 +106759,7 @@ { "id": 329, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -103227,7 +106767,7 @@ { "id": 330, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -103235,7 +106775,7 @@ { "id": 331, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -103243,7 +106783,7 @@ { "id": 332, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -103251,7 +106791,7 @@ { "id": 333, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -103259,7 +106799,7 @@ { "id": 334, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -103267,7 +106807,7 @@ { "id": 335, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -103275,7 +106815,7 @@ { "id": 336, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -103283,7 +106823,7 @@ { "id": 337, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -103291,7 +106831,7 @@ { "id": 338, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "false" } @@ -103299,7 +106839,7 @@ { "id": 339, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "true" } @@ -103307,7 +106847,7 @@ { "id": 340, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "false" } @@ -103315,7 +106855,7 @@ { "id": 341, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "true" } @@ -103323,13 +106863,45 @@ { "id": 342, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "false" } }, { "id": 343, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 344, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 345, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 346, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 347, "properties": { "distance": "7", "persistent": "false", @@ -103338,7 +106910,7 @@ }, { "default": true, - "id": 344, + "id": 348, "properties": { "distance": "7", "persistent": "false", @@ -103357,20 +106929,20 @@ }, "states": [ { - "id": 135, + "id": 139, "properties": { "axis": "x" } }, { "default": true, - "id": 136, + "id": 140, "properties": { "axis": "y" } }, { - "id": 137, + "id": 141, "properties": { "axis": "z" } @@ -103394,14 +106966,14 @@ }, "states": [ { - "id": 5718, + "id": 5722, "properties": { "powered": "true" } }, { "default": true, - "id": 5719, + "id": 5723, "properties": { "powered": "false" } @@ -103458,7 +107030,7 @@ }, "states": [ { - "id": 4458, + "id": 4462, "properties": { "rotation": "0", "waterlogged": "true" @@ -103466,217 +107038,217 @@ }, { "default": true, - "id": 4459, + "id": 4463, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4460, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4461, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4462, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4463, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4464, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, { "id": 4465, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, { "id": 4466, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, { "id": 4467, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, { "id": 4468, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, { "id": 4469, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, { "id": 4470, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, { "id": 4471, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, { "id": 4472, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, { "id": 4473, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, { "id": 4474, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, { "id": 4475, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, { "id": 4476, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, { "id": 4477, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, { "id": 4478, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, { "id": 4479, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, { "id": 4480, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, { "id": 4481, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, { "id": 4482, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, { "id": 4483, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, { "id": 4484, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, { "id": 4485, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, { "id": 4486, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, { "id": 4487, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, { "id": 4488, "properties": { - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4489, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4490, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4491, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4492, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4493, "properties": { "rotation": "15", "waterlogged": "false" @@ -103698,21 +107270,21 @@ }, "states": [ { - "id": 11035, + "id": 11039, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11036, + "id": 11040, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11037, + "id": 11041, "properties": { "type": "bottom", "waterlogged": "true" @@ -103720,21 +107292,21 @@ }, { "default": true, - "id": 11038, + "id": 11042, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11039, + "id": 11043, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11040, + "id": 11044, "properties": { "type": "double", "waterlogged": "false" @@ -103767,48 +107339,12 @@ ] }, "states": [ - { - "id": 7822, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7823, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7824, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7825, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 7826, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -103817,7 +107353,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -103826,7 +107362,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -103835,7 +107371,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -103844,7 +107380,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -103853,12 +107389,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7832, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7833, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7834, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7835, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7836, "properties": { "facing": "north", "half": "bottom", @@ -103868,47 +107440,11 @@ }, { "default": true, - "id": 7833, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7834, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7835, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7836, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 7837, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -103917,7 +107453,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -103926,7 +107462,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -103935,7 +107471,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -103944,43 +107480,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7842, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7843, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7844, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7845, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -103989,7 +107525,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -103998,7 +107534,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104007,7 +107543,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104016,7 +107552,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104025,7 +107561,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -104034,7 +107570,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -104042,8 +107578,8 @@ "id": 7852, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -104051,8 +107587,8 @@ "id": 7853, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -104060,8 +107596,8 @@ "id": 7854, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -104069,8 +107605,8 @@ "id": 7855, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -104079,7 +107615,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -104088,7 +107624,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104097,7 +107633,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104106,7 +107642,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104115,7 +107651,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -104124,43 +107660,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7862, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7863, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7864, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7865, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -104169,7 +107705,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -104178,7 +107714,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104187,7 +107723,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104196,7 +107732,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104205,7 +107741,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -104214,7 +107750,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -104222,8 +107758,8 @@ "id": 7872, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -104231,8 +107767,8 @@ "id": 7873, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -104240,8 +107776,8 @@ "id": 7874, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -104249,8 +107785,8 @@ "id": 7875, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -104259,7 +107795,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -104268,7 +107804,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104277,7 +107813,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104286,7 +107822,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104295,7 +107831,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -104304,43 +107840,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7882, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7883, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7884, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7885, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -104349,7 +107885,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -104358,7 +107894,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104367,7 +107903,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104376,7 +107912,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104385,7 +107921,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -104394,7 +107930,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -104402,8 +107938,8 @@ "id": 7892, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -104411,8 +107947,8 @@ "id": 7893, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -104420,8 +107956,8 @@ "id": 7894, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -104429,8 +107965,8 @@ "id": 7895, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -104439,7 +107975,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -104448,7 +107984,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -104457,7 +107993,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -104466,7 +108002,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -104475,12 +108011,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 7901, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7905, "properties": { "facing": "east", "half": "bottom", @@ -104516,52 +108088,12 @@ ] }, "states": [ - { - "id": 6150, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6151, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6152, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6153, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6154, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104571,7 +108103,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -104581,7 +108113,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -104591,7 +108123,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -104600,8 +108132,8 @@ "id": 6158, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -104610,8 +108142,8 @@ "id": 6159, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -104620,8 +108152,8 @@ "id": 6160, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -104630,8 +108162,8 @@ "id": 6161, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -104641,7 +108173,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104651,13 +108183,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 6164, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6165, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6166, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6167, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6168, "properties": { "facing": "north", "half": "bottom", @@ -104668,7 +108240,7 @@ }, { "default": true, - "id": 6165, + "id": 6169, "properties": { "facing": "north", "half": "bottom", @@ -104677,52 +108249,12 @@ "waterlogged": "false" } }, - { - "id": 6166, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6167, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6168, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6169, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6170, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104732,7 +108264,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -104742,7 +108274,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -104752,7 +108284,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -104761,8 +108293,8 @@ "id": 6174, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -104771,8 +108303,8 @@ "id": 6175, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -104781,8 +108313,8 @@ "id": 6176, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -104791,8 +108323,8 @@ "id": 6177, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -104802,7 +108334,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104812,7 +108344,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -104822,7 +108354,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -104832,7 +108364,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -104840,9 +108372,9 @@ { "id": 6182, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -104850,9 +108382,9 @@ { "id": 6183, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -104860,9 +108392,9 @@ { "id": 6184, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -104870,9 +108402,9 @@ { "id": 6185, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -104882,7 +108414,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104892,7 +108424,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -104902,7 +108434,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -104912,7 +108444,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -104921,8 +108453,8 @@ "id": 6190, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -104931,8 +108463,8 @@ "id": 6191, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -104941,8 +108473,8 @@ "id": 6192, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -104951,8 +108483,8 @@ "id": 6193, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -104962,7 +108494,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -104972,7 +108504,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -104982,7 +108514,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -104992,7 +108524,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -105000,9 +108532,9 @@ { "id": 6198, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -105010,9 +108542,9 @@ { "id": 6199, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -105020,9 +108552,9 @@ { "id": 6200, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -105030,9 +108562,9 @@ { "id": 6201, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -105042,7 +108574,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -105052,7 +108584,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -105062,7 +108594,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -105072,7 +108604,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -105081,8 +108613,8 @@ "id": 6206, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -105091,8 +108623,8 @@ "id": 6207, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -105101,8 +108633,8 @@ "id": 6208, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -105111,8 +108643,8 @@ "id": 6209, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -105122,7 +108654,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -105132,7 +108664,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -105142,13 +108674,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 6213, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6214, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6215, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6216, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6217, "properties": { "facing": "east", "half": "bottom", @@ -105174,7 +108746,7 @@ }, "states": [ { - "id": 5574, + "id": 5578, "properties": { "facing": "north", "waterlogged": "true" @@ -105182,49 +108754,49 @@ }, { "default": true, - "id": 5575, + "id": 5579, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5576, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5577, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5578, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5579, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5580, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5581, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5582, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5583, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5584, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5581, + "id": 5585, "properties": { "facing": "east", "waterlogged": "false" @@ -105247,7 +108819,7 @@ }, "states": [ { - "id": 4798, + "id": 4802, "properties": { "facing": "north", "waterlogged": "true" @@ -105255,49 +108827,49 @@ }, { "default": true, - "id": 4799, + "id": 4803, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4800, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4801, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4802, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4803, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4804, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4805, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4806, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4807, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4808, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4805, + "id": 4809, "properties": { "facing": "east", "waterlogged": "false" @@ -105315,20 +108887,20 @@ }, "states": [ { - "id": 194, + "id": 198, "properties": { "axis": "x" } }, { "default": true, - "id": 195, + "id": 199, "properties": { "axis": "y" } }, { - "id": 196, + "id": 200, "properties": { "axis": "z" } @@ -105369,157 +108941,157 @@ "states": [ { "default": true, - "id": 12604, + "id": 12619, "properties": { "age": "0" } }, { - "id": 12605, + "id": 12620, "properties": { "age": "1" } }, { - "id": 12606, + "id": 12621, "properties": { "age": "2" } }, { - "id": 12607, + "id": 12622, "properties": { "age": "3" } }, { - "id": 12608, + "id": 12623, "properties": { "age": "4" } }, { - "id": 12609, + "id": 12624, "properties": { "age": "5" } }, { - "id": 12610, + "id": 12625, "properties": { "age": "6" } }, { - "id": 12611, + "id": 12626, "properties": { "age": "7" } }, { - "id": 12612, + "id": 12627, "properties": { "age": "8" } }, { - "id": 12613, + "id": 12628, "properties": { "age": "9" } }, { - "id": 12614, + "id": 12629, "properties": { "age": "10" } }, { - "id": 12615, + "id": 12630, "properties": { "age": "11" } }, { - "id": 12616, + "id": 12631, "properties": { "age": "12" } }, { - "id": 12617, + "id": 12632, "properties": { "age": "13" } }, { - "id": 12618, + "id": 12633, "properties": { "age": "14" } }, { - "id": 12619, + "id": 12634, "properties": { "age": "15" } }, { - "id": 12620, + "id": 12635, "properties": { "age": "16" } }, { - "id": 12621, + "id": 12636, "properties": { "age": "17" } }, { - "id": 12622, + "id": 12637, "properties": { "age": "18" } }, { - "id": 12623, + "id": 12638, "properties": { "age": "19" } }, { - "id": 12624, + "id": 12639, "properties": { "age": "20" } }, { - "id": 12625, + "id": 12640, "properties": { "age": "21" } }, { - "id": 12626, + "id": 12641, "properties": { "age": "22" } }, { - "id": 12627, + "id": 12642, "properties": { "age": "23" } }, { - "id": 12628, + "id": 12643, "properties": { "age": "24" } }, { - "id": 12629, + "id": 12644, "properties": { "age": "25" } @@ -105530,7 +109102,7 @@ "states": [ { "default": true, - "id": 12630 + "id": 12645 } ] }, @@ -105549,7 +109121,7 @@ }, "states": [ { - "id": 4650, + "id": 4654, "properties": { "facing": "north", "waterlogged": "true" @@ -105557,49 +109129,49 @@ }, { "default": true, - "id": 4651, + "id": 4655, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4652, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4653, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4654, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4655, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4656, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4657, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4658, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4659, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4660, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4657, + "id": 4661, "properties": { "facing": "east", "waterlogged": "false" @@ -105620,21 +109192,21 @@ }, "states": [ { - "id": 18344, + "id": 18362, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 18345, + "id": 18363, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 18346, + "id": 18364, "properties": { "hanging": "false", "waterlogged": "true" @@ -105642,7 +109214,7 @@ }, { "default": true, - "id": 18347, + "id": 18365, "properties": { "hanging": "false", "waterlogged": "false" @@ -105654,7 +109226,7 @@ "states": [ { "default": true, - "id": 518 + "id": 522 } ] }, @@ -105662,7 +109234,7 @@ "states": [ { "default": true, - "id": 516 + "id": 520 } ] }, @@ -105683,63 +109255,63 @@ }, "states": [ { - "id": 20886, + "id": 20904, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 20887, + "id": 20905, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 20888, + "id": 20906, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 20889, + "id": 20907, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 20890, + "id": 20908, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 20891, + "id": 20909, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 20892, + "id": 20910, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 20893, + "id": 20911, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 20894, + "id": 20912, "properties": { "facing": "up", "waterlogged": "true" @@ -105747,21 +109319,21 @@ }, { "default": true, - "id": 20895, + "id": 20913, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 20896, + "id": 20914, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 20897, + "id": 20915, "properties": { "facing": "down", "waterlogged": "false" @@ -105778,14 +109350,14 @@ }, "states": [ { - "id": 10612, + "id": 10616, "properties": { "half": "upper" } }, { "default": true, - "id": 10613, + "id": 10617, "properties": { "half": "lower" } @@ -105917,7 +109489,7 @@ "states": [ { "default": true, - "id": 7398 + "id": 7402 } ] }, @@ -105940,7 +109512,7 @@ }, "states": [ { - "id": 18291, + "id": 18309, "properties": { "facing": "north", "has_book": "true", @@ -105948,7 +109520,7 @@ } }, { - "id": 18292, + "id": 18310, "properties": { "facing": "north", "has_book": "true", @@ -105956,7 +109528,7 @@ } }, { - "id": 18293, + "id": 18311, "properties": { "facing": "north", "has_book": "false", @@ -105965,7 +109537,7 @@ }, { "default": true, - "id": 18294, + "id": 18312, "properties": { "facing": "north", "has_book": "false", @@ -105973,7 +109545,7 @@ } }, { - "id": 18295, + "id": 18313, "properties": { "facing": "south", "has_book": "true", @@ -105981,7 +109553,7 @@ } }, { - "id": 18296, + "id": 18314, "properties": { "facing": "south", "has_book": "true", @@ -105989,7 +109561,7 @@ } }, { - "id": 18297, + "id": 18315, "properties": { "facing": "south", "has_book": "false", @@ -105997,7 +109569,7 @@ } }, { - "id": 18298, + "id": 18316, "properties": { "facing": "south", "has_book": "false", @@ -106005,7 +109577,7 @@ } }, { - "id": 18299, + "id": 18317, "properties": { "facing": "west", "has_book": "true", @@ -106013,7 +109585,7 @@ } }, { - "id": 18300, + "id": 18318, "properties": { "facing": "west", "has_book": "true", @@ -106021,7 +109593,7 @@ } }, { - "id": 18301, + "id": 18319, "properties": { "facing": "west", "has_book": "false", @@ -106029,7 +109601,7 @@ } }, { - "id": 18302, + "id": 18320, "properties": { "facing": "west", "has_book": "false", @@ -106037,7 +109609,7 @@ } }, { - "id": 18303, + "id": 18321, "properties": { "facing": "east", "has_book": "true", @@ -106045,7 +109617,7 @@ } }, { - "id": 18304, + "id": 18322, "properties": { "facing": "east", "has_book": "true", @@ -106053,7 +109625,7 @@ } }, { - "id": 18305, + "id": 18323, "properties": { "facing": "east", "has_book": "false", @@ -106061,7 +109633,7 @@ } }, { - "id": 18306, + "id": 18324, "properties": { "facing": "east", "has_book": "false", @@ -106089,43 +109661,11 @@ ] }, "states": [ - { - "id": 5622, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5623, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5624, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5625, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 5626, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -106133,7 +109673,7 @@ "id": 5627, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -106141,7 +109681,7 @@ "id": 5628, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -106149,12 +109689,44 @@ "id": 5629, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 5630, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5631, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5632, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5633, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5634, "properties": { "face": "wall", "facing": "north", @@ -106163,42 +109735,10 @@ }, { "default": true, - "id": 5631, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5632, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5633, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5634, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 5635, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -106206,7 +109746,7 @@ "id": 5636, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -106214,39 +109754,39 @@ "id": 5637, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 5638, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 5639, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 5640, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 5641, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -106254,7 +109794,7 @@ "id": 5642, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -106262,7 +109802,7 @@ "id": 5643, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -106270,12 +109810,44 @@ "id": 5644, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 5645, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5646, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5647, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5648, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5649, "properties": { "face": "ceiling", "facing": "east", @@ -106310,218 +109882,218 @@ ] }, "states": [ - { - "id": 10222, - "properties": { - "level": "0", - "waterlogged": "true" - } - }, - { - "id": 10223, - "properties": { - "level": "0", - "waterlogged": "false" - } - }, - { - "id": 10224, - "properties": { - "level": "1", - "waterlogged": "true" - } - }, - { - "id": 10225, - "properties": { - "level": "1", - "waterlogged": "false" - } - }, { "id": 10226, "properties": { - "level": "2", + "level": "0", "waterlogged": "true" } }, { "id": 10227, "properties": { - "level": "2", + "level": "0", "waterlogged": "false" } }, { "id": 10228, "properties": { - "level": "3", + "level": "1", "waterlogged": "true" } }, { "id": 10229, "properties": { - "level": "3", + "level": "1", "waterlogged": "false" } }, { "id": 10230, "properties": { - "level": "4", + "level": "2", "waterlogged": "true" } }, { "id": 10231, "properties": { - "level": "4", + "level": "2", "waterlogged": "false" } }, { "id": 10232, "properties": { - "level": "5", + "level": "3", "waterlogged": "true" } }, { "id": 10233, "properties": { - "level": "5", + "level": "3", "waterlogged": "false" } }, { "id": 10234, "properties": { - "level": "6", + "level": "4", "waterlogged": "true" } }, { "id": 10235, "properties": { - "level": "6", + "level": "4", "waterlogged": "false" } }, { "id": 10236, "properties": { - "level": "7", + "level": "5", "waterlogged": "true" } }, { "id": 10237, "properties": { - "level": "7", + "level": "5", "waterlogged": "false" } }, { "id": 10238, "properties": { - "level": "8", + "level": "6", "waterlogged": "true" } }, { "id": 10239, "properties": { - "level": "8", + "level": "6", "waterlogged": "false" } }, { "id": 10240, "properties": { - "level": "9", + "level": "7", "waterlogged": "true" } }, { "id": 10241, "properties": { - "level": "9", + "level": "7", "waterlogged": "false" } }, { "id": 10242, "properties": { - "level": "10", + "level": "8", "waterlogged": "true" } }, { "id": 10243, "properties": { - "level": "10", + "level": "8", "waterlogged": "false" } }, { "id": 10244, "properties": { - "level": "11", + "level": "9", "waterlogged": "true" } }, { "id": 10245, "properties": { - "level": "11", + "level": "9", "waterlogged": "false" } }, { "id": 10246, "properties": { - "level": "12", + "level": "10", "waterlogged": "true" } }, { "id": 10247, "properties": { - "level": "12", + "level": "10", "waterlogged": "false" } }, { "id": 10248, "properties": { - "level": "13", + "level": "11", "waterlogged": "true" } }, { "id": 10249, "properties": { - "level": "13", + "level": "11", "waterlogged": "false" } }, { "id": 10250, "properties": { - "level": "14", + "level": "12", "waterlogged": "true" } }, { "id": 10251, "properties": { - "level": "14", + "level": "12", "waterlogged": "false" } }, { "id": 10252, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 10253, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 10254, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 10255, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 10256, "properties": { "level": "15", "waterlogged": "true" @@ -106529,7 +110101,7 @@ }, { "default": true, - "id": 10253, + "id": 10257, "properties": { "level": "15", "waterlogged": "false" @@ -106561,97 +110133,97 @@ "states": [ { "default": true, - "id": 10662, + "id": 10666, "properties": { "rotation": "0" } }, { - "id": 10663, + "id": 10667, "properties": { "rotation": "1" } }, { - "id": 10664, + "id": 10668, "properties": { "rotation": "2" } }, { - "id": 10665, + "id": 10669, "properties": { "rotation": "3" } }, { - "id": 10666, + "id": 10670, "properties": { "rotation": "4" } }, { - "id": 10667, + "id": 10671, "properties": { "rotation": "5" } }, { - "id": 10668, + "id": 10672, "properties": { "rotation": "6" } }, { - "id": 10669, + "id": 10673, "properties": { "rotation": "7" } }, { - "id": 10670, + "id": 10674, "properties": { "rotation": "8" } }, { - "id": 10671, + "id": 10675, "properties": { "rotation": "9" } }, { - "id": 10672, + "id": 10676, "properties": { "rotation": "10" } }, { - "id": 10673, + "id": 10677, "properties": { "rotation": "11" } }, { - "id": 10674, + "id": 10678, "properties": { "rotation": "12" } }, { - "id": 10675, + "id": 10679, "properties": { "rotation": "13" } }, { - "id": 10676, + "id": 10680, "properties": { "rotation": "14" } }, { - "id": 10677, + "id": 10681, "properties": { "rotation": "15" } @@ -106677,7 +110249,7 @@ }, "states": [ { - "id": 1732, + "id": 1736, "properties": { "facing": "north", "occupied": "true", @@ -106685,7 +110257,7 @@ } }, { - "id": 1733, + "id": 1737, "properties": { "facing": "north", "occupied": "true", @@ -106693,7 +110265,7 @@ } }, { - "id": 1734, + "id": 1738, "properties": { "facing": "north", "occupied": "false", @@ -106702,49 +110274,17 @@ }, { "default": true, - "id": 1735, + "id": 1739, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1736, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1737, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1738, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1739, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1740, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -106752,7 +110292,7 @@ { "id": 1741, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -106760,7 +110300,7 @@ { "id": 1742, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -106768,7 +110308,7 @@ { "id": 1743, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -106776,7 +110316,7 @@ { "id": 1744, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -106784,7 +110324,7 @@ { "id": 1745, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -106792,13 +110332,45 @@ { "id": 1746, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1747, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1748, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1749, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1750, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1751, "properties": { "facing": "east", "occupied": "false", @@ -106826,7 +110398,7 @@ }, "states": [ { - "id": 20630, + "id": 20648, "properties": { "candles": "1", "lit": "true", @@ -106834,7 +110406,7 @@ } }, { - "id": 20631, + "id": 20649, "properties": { "candles": "1", "lit": "true", @@ -106842,7 +110414,7 @@ } }, { - "id": 20632, + "id": 20650, "properties": { "candles": "1", "lit": "false", @@ -106851,7 +110423,7 @@ }, { "default": true, - "id": 20633, + "id": 20651, "properties": { "candles": "1", "lit": "false", @@ -106859,7 +110431,7 @@ } }, { - "id": 20634, + "id": 20652, "properties": { "candles": "2", "lit": "true", @@ -106867,7 +110439,7 @@ } }, { - "id": 20635, + "id": 20653, "properties": { "candles": "2", "lit": "true", @@ -106875,7 +110447,7 @@ } }, { - "id": 20636, + "id": 20654, "properties": { "candles": "2", "lit": "false", @@ -106883,7 +110455,7 @@ } }, { - "id": 20637, + "id": 20655, "properties": { "candles": "2", "lit": "false", @@ -106891,7 +110463,7 @@ } }, { - "id": 20638, + "id": 20656, "properties": { "candles": "3", "lit": "true", @@ -106899,7 +110471,7 @@ } }, { - "id": 20639, + "id": 20657, "properties": { "candles": "3", "lit": "true", @@ -106907,7 +110479,7 @@ } }, { - "id": 20640, + "id": 20658, "properties": { "candles": "3", "lit": "false", @@ -106915,7 +110487,7 @@ } }, { - "id": 20641, + "id": 20659, "properties": { "candles": "3", "lit": "false", @@ -106923,7 +110495,7 @@ } }, { - "id": 20642, + "id": 20660, "properties": { "candles": "4", "lit": "true", @@ -106931,7 +110503,7 @@ } }, { - "id": 20643, + "id": 20661, "properties": { "candles": "4", "lit": "true", @@ -106939,7 +110511,7 @@ } }, { - "id": 20644, + "id": 20662, "properties": { "candles": "4", "lit": "false", @@ -106947,7 +110519,7 @@ } }, { - "id": 20645, + "id": 20663, "properties": { "candles": "4", "lit": "false", @@ -106965,14 +110537,14 @@ }, "states": [ { - "id": 20846, + "id": 20864, "properties": { "lit": "true" } }, { "default": true, - "id": 20847, + "id": 20865, "properties": { "lit": "false" } @@ -106983,7 +110555,7 @@ "states": [ { "default": true, - "id": 10586 + "id": 10590 } ] }, @@ -106991,7 +110563,7 @@ "states": [ { "default": true, - "id": 12575 + "id": 12590 } ] }, @@ -106999,7 +110571,7 @@ "states": [ { "default": true, - "id": 12591 + "id": 12606 } ] }, @@ -107015,25 +110587,25 @@ "states": [ { "default": true, - "id": 12520, + "id": 12535, "properties": { "facing": "north" } }, { - "id": 12521, + "id": 12536, "properties": { "facing": "south" } }, { - "id": 12522, + "id": 12537, "properties": { "facing": "west" } }, { - "id": 12523, + "id": 12538, "properties": { "facing": "east" } @@ -107053,38 +110625,38 @@ }, "states": [ { - "id": 12430, + "id": 12445, "properties": { "facing": "north" } }, { - "id": 12431, + "id": 12446, "properties": { "facing": "east" } }, { - "id": 12432, + "id": 12447, "properties": { "facing": "south" } }, { - "id": 12433, + "id": 12448, "properties": { "facing": "west" } }, { "default": true, - "id": 12434, + "id": 12449, "properties": { "facing": "up" } }, { - "id": 12435, + "id": 12450, "properties": { "facing": "down" } @@ -107095,7 +110667,7 @@ "states": [ { "default": true, - "id": 5945 + "id": 5949 } ] }, @@ -107123,52 +110695,12 @@ ] }, "states": [ - { - "id": 9324, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9325, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9326, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9327, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9328, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -107178,7 +110710,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -107188,7 +110720,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -107198,7 +110730,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -107207,8 +110739,8 @@ "id": 9332, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -107217,8 +110749,8 @@ "id": 9333, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -107227,8 +110759,8 @@ "id": 9334, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -107237,8 +110769,8 @@ "id": 9335, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -107248,7 +110780,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -107258,7 +110790,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -107268,7 +110800,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -107278,7 +110810,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -107286,9 +110818,9 @@ { "id": 9340, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -107296,9 +110828,9 @@ { "id": 9341, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -107306,9 +110838,9 @@ { "id": 9342, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -107316,9 +110848,9 @@ { "id": 9343, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -107328,7 +110860,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -107338,7 +110870,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -107348,7 +110880,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -107358,7 +110890,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -107367,8 +110899,8 @@ "id": 9348, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -107377,8 +110909,8 @@ "id": 9349, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -107387,8 +110919,8 @@ "id": 9350, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -107397,8 +110929,8 @@ "id": 9351, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -107408,7 +110940,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -107418,13 +110950,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9354, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9355, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9356, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9357, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9358, "properties": { "east": "false", "north": "false", @@ -107435,7 +111007,7 @@ }, { "default": true, - "id": 9355, + "id": 9359, "properties": { "east": "false", "north": "false", @@ -107450,11 +111022,3317 @@ "states": [ { "default": true, - "id": 9215 + "id": 9219 } ] }, "minecraft:light_blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10886, + "properties": { + "facing": "north" + } + }, + { + "id": 10887, + "properties": { + "facing": "south" + } + }, + { + "id": 10888, + "properties": { + "facing": "west" + } + }, + { + "id": 10889, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "states": [ + { + "default": true, + "id": 2050 + } + ] + }, + "minecraft:light_gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10746, + "properties": { + "rotation": "0" + } + }, + { + "id": 10747, + "properties": { + "rotation": "1" + } + }, + { + "id": 10748, + "properties": { + "rotation": "2" + } + }, + { + "id": 10749, + "properties": { + "rotation": "3" + } + }, + { + "id": 10750, + "properties": { + "rotation": "4" + } + }, + { + "id": 10751, + "properties": { + "rotation": "5" + } + }, + { + "id": 10752, + "properties": { + "rotation": "6" + } + }, + { + "id": 10753, + "properties": { + "rotation": "7" + } + }, + { + "id": 10754, + "properties": { + "rotation": "8" + } + }, + { + "id": 10755, + "properties": { + "rotation": "9" + } + }, + { + "id": 10756, + "properties": { + "rotation": "10" + } + }, + { + "id": 10757, + "properties": { + "rotation": "11" + } + }, + { + "id": 10758, + "properties": { + "rotation": "12" + } + }, + { + "id": 10759, + "properties": { + "rotation": "13" + } + }, + { + "id": 10760, + "properties": { + "rotation": "14" + } + }, + { + "id": 10761, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1816, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1817, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1818, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1819, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1820, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1821, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1822, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1823, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1824, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1825, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1826, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1827, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1828, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1829, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1830, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1831, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20728, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20729, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20730, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20731, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20732, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20733, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20734, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20735, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20736, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20737, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20738, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20739, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20740, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20741, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20742, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20743, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20874, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20875, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "default": true, + "id": 10595 + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "default": true, + "id": 12595 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 12611 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12555, + "properties": { + "facing": "north" + } + }, + { + "id": 12556, + "properties": { + "facing": "south" + } + }, + { + "id": 12557, + "properties": { + "facing": "west" + } + }, + { + "id": 12558, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12475, + "properties": { + "facing": "north" + } + }, + { + "id": 12476, + "properties": { + "facing": "east" + } + }, + { + "id": 12477, + "properties": { + "facing": "south" + } + }, + { + "id": 12478, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12479, + "properties": { + "facing": "up" + } + }, + { + "id": 12480, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "default": true, + "id": 5954 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9488, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9489, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9490, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9491, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9492, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9493, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9494, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9495, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9496, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9497, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9498, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9499, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9500, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9501, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9502, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9503, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9504, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9505, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9506, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9507, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9508, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9509, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9510, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9511, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9512, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9513, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9514, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9515, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9516, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9517, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9518, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9519, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "states": [ + { + "default": true, + "id": 9224 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10906, + "properties": { + "facing": "north" + } + }, + { + "id": 10907, + "properties": { + "facing": "south" + } + }, + { + "id": 10908, + "properties": { + "facing": "west" + } + }, + { + "id": 10909, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "default": true, + "id": 2055 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9003, + "properties": { + "power": "0" + } + }, + { + "id": 9004, + "properties": { + "power": "1" + } + }, + { + "id": 9005, + "properties": { + "power": "2" + } + }, + { + "id": 9006, + "properties": { + "power": "3" + } + }, + { + "id": 9007, + "properties": { + "power": "4" + } + }, + { + "id": 9008, + "properties": { + "power": "5" + } + }, + { + "id": 9009, + "properties": { + "power": "6" + } + }, + { + "id": 9010, + "properties": { + "power": "7" + } + }, + { + "id": 9011, + "properties": { + "power": "8" + } + }, + { + "id": 9012, + "properties": { + "power": "9" + } + }, + { + "id": 9013, + "properties": { + "power": "10" + } + }, + { + "id": 9014, + "properties": { + "power": "11" + } + }, + { + "id": 9015, + "properties": { + "power": "12" + } + }, + { + "id": 9016, + "properties": { + "power": "13" + } + }, + { + "id": 9017, + "properties": { + "power": "14" + } + }, + { + "id": 9018, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22269, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22270, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22271, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 22272, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 22273, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22274, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22275, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 22276, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 22277, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22278, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22279, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 22280, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 22281, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22282, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22283, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 22284, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 22285, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22286, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22287, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22288, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 22289, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 22290, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 22291, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 22292, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10608, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10609, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 2088 + } + ] + }, + "minecraft:lily_pad": { + "states": [ + { + "default": true, + "id": 7271 + } + ] + }, + "minecraft:lime_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10698, + "properties": { + "rotation": "0" + } + }, + { + "id": 10699, + "properties": { + "rotation": "1" + } + }, + { + "id": 10700, + "properties": { + "rotation": "2" + } + }, + { + "id": 10701, + "properties": { + "rotation": "3" + } + }, + { + "id": 10702, + "properties": { + "rotation": "4" + } + }, + { + "id": 10703, + "properties": { + "rotation": "5" + } + }, + { + "id": 10704, + "properties": { + "rotation": "6" + } + }, + { + "id": 10705, + "properties": { + "rotation": "7" + } + }, + { + "id": 10706, + "properties": { + "rotation": "8" + } + }, + { + "id": 10707, + "properties": { + "rotation": "9" + } + }, + { + "id": 10708, + "properties": { + "rotation": "10" + } + }, + { + "id": 10709, + "properties": { + "rotation": "11" + } + }, + { + "id": 10710, + "properties": { + "rotation": "12" + } + }, + { + "id": 10711, + "properties": { + "rotation": "13" + } + }, + { + "id": 10712, + "properties": { + "rotation": "14" + } + }, + { + "id": 10713, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1768, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1769, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1770, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1771, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1772, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1773, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1774, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1775, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1776, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1777, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1778, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1779, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1780, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1781, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1782, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1783, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20680, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20681, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20682, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20683, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20684, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20685, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20686, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20687, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20688, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20689, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20690, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20691, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20692, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20693, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20694, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20695, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20868, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20869, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "states": [ + { + "default": true, + "id": 10592 + } + ] + }, + "minecraft:lime_concrete": { + "states": [ + { + "default": true, + "id": 12592 + } + ] + }, + "minecraft:lime_concrete_powder": { + "states": [ + { + "default": true, + "id": 12608 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12543, + "properties": { + "facing": "north" + } + }, + { + "id": 12544, + "properties": { + "facing": "south" + } + }, + { + "id": 12545, + "properties": { + "facing": "west" + } + }, + { + "id": 12546, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12457, + "properties": { + "facing": "north" + } + }, + { + "id": 12458, + "properties": { + "facing": "east" + } + }, + { + "id": 12459, + "properties": { + "facing": "south" + } + }, + { + "id": 12460, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12461, + "properties": { + "facing": "up" + } + }, + { + "id": 12462, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "states": [ + { + "default": true, + "id": 5951 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9392, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9393, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9394, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9395, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9396, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9397, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9398, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9399, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9400, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9401, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9402, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9403, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9404, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9405, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9406, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9407, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9408, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9409, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9410, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9411, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9412, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9413, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9414, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9415, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9416, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9417, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9418, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9419, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9420, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9421, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9422, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9423, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "states": [ + { + "default": true, + "id": 9221 + } + ] + }, + "minecraft:lime_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10894, + "properties": { + "facing": "north" + } + }, + { + "id": 10895, + "properties": { + "facing": "south" + } + }, + { + "id": 10896, + "properties": { + "facing": "west" + } + }, + { + "id": 10897, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "states": [ + { + "default": true, + "id": 2052 + } + ] + }, + "minecraft:lodestone": { + "states": [ + { + "default": true, + "id": 19318 + } + ] + }, + "minecraft:loom": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18263, + "properties": { + "facing": "north" + } + }, + { + "id": 18264, + "properties": { + "facing": "south" + } + }, + { + "id": 18265, + "properties": { + "facing": "west" + } + }, + { + "id": 18266, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10650, + "properties": { + "rotation": "0" + } + }, + { + "id": 10651, + "properties": { + "rotation": "1" + } + }, + { + "id": 10652, + "properties": { + "rotation": "2" + } + }, + { + "id": 10653, + "properties": { + "rotation": "3" + } + }, + { + "id": 10654, + "properties": { + "rotation": "4" + } + }, + { + "id": 10655, + "properties": { + "rotation": "5" + } + }, + { + "id": 10656, + "properties": { + "rotation": "6" + } + }, + { + "id": 10657, + "properties": { + "rotation": "7" + } + }, + { + "id": 10658, + "properties": { + "rotation": "8" + } + }, + { + "id": 10659, + "properties": { + "rotation": "9" + } + }, + { + "id": 10660, + "properties": { + "rotation": "10" + } + }, + { + "id": 10661, + "properties": { + "rotation": "11" + } + }, + { + "id": 10662, + "properties": { + "rotation": "12" + } + }, + { + "id": 10663, + "properties": { + "rotation": "13" + } + }, + { + "id": 10664, + "properties": { + "rotation": "14" + } + }, + { + "id": 10665, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1720, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1721, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1722, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1723, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1724, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1725, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1726, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1727, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1728, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1729, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1730, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1731, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1732, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1733, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1734, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1735, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20632, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20633, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20634, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20635, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20636, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20637, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20638, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20639, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20640, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20641, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20642, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20643, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20644, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20645, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20646, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20647, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20862, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20863, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "states": [ + { + "default": true, + "id": 10589 + } + ] + }, + "minecraft:magenta_concrete": { + "states": [ + { + "default": true, + "id": 12589 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "states": [ + { + "default": true, + "id": 12605 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12531, + "properties": { + "facing": "north" + } + }, + { + "id": 12532, + "properties": { + "facing": "south" + } + }, + { + "id": 12533, + "properties": { + "facing": "west" + } + }, + { + "id": 12534, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12439, + "properties": { + "facing": "north" + } + }, + { + "id": 12440, + "properties": { + "facing": "east" + } + }, + { + "id": 12441, + "properties": { + "facing": "south" + } + }, + { + "id": 12442, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12443, + "properties": { + "facing": "up" + } + }, + { + "id": 12444, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "states": [ + { + "default": true, + "id": 5948 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9296, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9297, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9298, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9299, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9300, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9301, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9302, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9303, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9304, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9305, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9306, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9307, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9308, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9309, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9310, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9311, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9312, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9313, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9314, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9315, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9316, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9317, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9318, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9319, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9320, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9321, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9322, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9323, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9324, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9325, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9326, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9327, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "states": [ + { + "default": true, + "id": 9218 + } + ] + }, + "minecraft:magenta_wall_banner": { "properties": { "facing": [ "north", @@ -107491,3317 +114369,11 @@ } ] }, - "minecraft:light_blue_wool": { - "states": [ - { - "default": true, - "id": 2046 - } - ] - }, - "minecraft:light_gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10742, - "properties": { - "rotation": "0" - } - }, - { - "id": 10743, - "properties": { - "rotation": "1" - } - }, - { - "id": 10744, - "properties": { - "rotation": "2" - } - }, - { - "id": 10745, - "properties": { - "rotation": "3" - } - }, - { - "id": 10746, - "properties": { - "rotation": "4" - } - }, - { - "id": 10747, - "properties": { - "rotation": "5" - } - }, - { - "id": 10748, - "properties": { - "rotation": "6" - } - }, - { - "id": 10749, - "properties": { - "rotation": "7" - } - }, - { - "id": 10750, - "properties": { - "rotation": "8" - } - }, - { - "id": 10751, - "properties": { - "rotation": "9" - } - }, - { - "id": 10752, - "properties": { - "rotation": "10" - } - }, - { - "id": 10753, - "properties": { - "rotation": "11" - } - }, - { - "id": 10754, - "properties": { - "rotation": "12" - } - }, - { - "id": 10755, - "properties": { - "rotation": "13" - } - }, - { - "id": 10756, - "properties": { - "rotation": "14" - } - }, - { - "id": 10757, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:light_gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1812, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1813, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1814, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1815, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1816, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1817, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1818, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1819, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1820, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1821, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1822, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1823, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1824, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1825, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1826, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1827, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:light_gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20710, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20711, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20712, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20713, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20714, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20715, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20716, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20717, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20718, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20719, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20720, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20721, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20722, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20723, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20724, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20725, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:light_gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20856, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20857, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:light_gray_carpet": { - "states": [ - { - "default": true, - "id": 10591 - } - ] - }, - "minecraft:light_gray_concrete": { - "states": [ - { - "default": true, - "id": 12580 - } - ] - }, - "minecraft:light_gray_concrete_powder": { - "states": [ - { - "default": true, - "id": 12596 - } - ] - }, - "minecraft:light_gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12540, - "properties": { - "facing": "north" - } - }, - { - "id": 12541, - "properties": { - "facing": "south" - } - }, - { - "id": 12542, - "properties": { - "facing": "west" - } - }, - { - "id": 12543, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12460, - "properties": { - "facing": "north" - } - }, - { - "id": 12461, - "properties": { - "facing": "east" - } - }, - { - "id": 12462, - "properties": { - "facing": "south" - } - }, - { - "id": 12463, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12464, - "properties": { - "facing": "up" - } - }, - { - "id": 12465, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:light_gray_stained_glass": { - "states": [ - { - "default": true, - "id": 5950 - } - ] - }, - "minecraft:light_gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9484, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9485, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9486, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9487, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9488, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9489, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9490, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9491, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9492, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9493, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9494, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9495, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9496, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9497, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9498, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9499, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9500, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9501, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9502, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9503, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9504, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9505, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9506, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9507, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9508, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9509, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9510, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9511, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9512, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9513, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9514, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9515, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:light_gray_terracotta": { - "states": [ - { - "default": true, - "id": 9220 - } - ] - }, - "minecraft:light_gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10902, - "properties": { - "facing": "north" - } - }, - { - "id": 10903, - "properties": { - "facing": "south" - } - }, - { - "id": 10904, - "properties": { - "facing": "west" - } - }, - { - "id": 10905, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_gray_wool": { - "states": [ - { - "default": true, - "id": 2051 - } - ] - }, - "minecraft:light_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8999, - "properties": { - "power": "0" - } - }, - { - "id": 9000, - "properties": { - "power": "1" - } - }, - { - "id": 9001, - "properties": { - "power": "2" - } - }, - { - "id": 9002, - "properties": { - "power": "3" - } - }, - { - "id": 9003, - "properties": { - "power": "4" - } - }, - { - "id": 9004, - "properties": { - "power": "5" - } - }, - { - "id": 9005, - "properties": { - "power": "6" - } - }, - { - "id": 9006, - "properties": { - "power": "7" - } - }, - { - "id": 9007, - "properties": { - "power": "8" - } - }, - { - "id": 9008, - "properties": { - "power": "9" - } - }, - { - "id": 9009, - "properties": { - "power": "10" - } - }, - { - "id": 9010, - "properties": { - "power": "11" - } - }, - { - "id": 9011, - "properties": { - "power": "12" - } - }, - { - "id": 9012, - "properties": { - "power": "13" - } - }, - { - "id": 9013, - "properties": { - "power": "14" - } - }, - { - "id": 9014, - "properties": { - "power": "15" - } - } - ] - }, - "minecraft:lightning_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21867, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21868, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21869, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 21870, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 21871, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21872, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21873, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 21874, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 21875, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21876, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21877, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 21878, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 21879, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21880, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21881, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 21882, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 21883, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21884, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21885, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21886, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 21887, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 21888, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 21889, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 21890, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lilac": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10604, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10605, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:lily_of_the_valley": { - "states": [ - { - "default": true, - "id": 2084 - } - ] - }, - "minecraft:lily_pad": { - "states": [ - { - "default": true, - "id": 7267 - } - ] - }, - "minecraft:lime_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10694, - "properties": { - "rotation": "0" - } - }, - { - "id": 10695, - "properties": { - "rotation": "1" - } - }, - { - "id": 10696, - "properties": { - "rotation": "2" - } - }, - { - "id": 10697, - "properties": { - "rotation": "3" - } - }, - { - "id": 10698, - "properties": { - "rotation": "4" - } - }, - { - "id": 10699, - "properties": { - "rotation": "5" - } - }, - { - "id": 10700, - "properties": { - "rotation": "6" - } - }, - { - "id": 10701, - "properties": { - "rotation": "7" - } - }, - { - "id": 10702, - "properties": { - "rotation": "8" - } - }, - { - "id": 10703, - "properties": { - "rotation": "9" - } - }, - { - "id": 10704, - "properties": { - "rotation": "10" - } - }, - { - "id": 10705, - "properties": { - "rotation": "11" - } - }, - { - "id": 10706, - "properties": { - "rotation": "12" - } - }, - { - "id": 10707, - "properties": { - "rotation": "13" - } - }, - { - "id": 10708, - "properties": { - "rotation": "14" - } - }, - { - "id": 10709, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:lime_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1764, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1765, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1766, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1767, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1768, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1769, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1770, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1771, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1772, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1773, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1774, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1775, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1776, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1777, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1778, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1779, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:lime_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20662, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20663, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20664, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20665, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20666, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20667, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20668, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20669, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20670, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20671, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20672, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20673, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20674, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20675, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20676, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20677, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lime_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20850, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20851, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:lime_carpet": { - "states": [ - { - "default": true, - "id": 10588 - } - ] - }, - "minecraft:lime_concrete": { - "states": [ - { - "default": true, - "id": 12577 - } - ] - }, - "minecraft:lime_concrete_powder": { - "states": [ - { - "default": true, - "id": 12593 - } - ] - }, - "minecraft:lime_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12528, - "properties": { - "facing": "north" - } - }, - { - "id": 12529, - "properties": { - "facing": "south" - } - }, - { - "id": 12530, - "properties": { - "facing": "west" - } - }, - { - "id": 12531, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:lime_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12442, - "properties": { - "facing": "north" - } - }, - { - "id": 12443, - "properties": { - "facing": "east" - } - }, - { - "id": 12444, - "properties": { - "facing": "south" - } - }, - { - "id": 12445, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12446, - "properties": { - "facing": "up" - } - }, - { - "id": 12447, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:lime_stained_glass": { - "states": [ - { - "default": true, - "id": 5947 - } - ] - }, - "minecraft:lime_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9388, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9389, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9390, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9391, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9392, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9393, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9394, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9395, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9396, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9397, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9398, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9399, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9400, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9401, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9402, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9403, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9404, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9405, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9406, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9407, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9408, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9409, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9410, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9411, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9412, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9413, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9414, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9415, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9416, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9417, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9418, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9419, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:lime_terracotta": { - "states": [ - { - "default": true, - "id": 9217 - } - ] - }, - "minecraft:lime_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10890, - "properties": { - "facing": "north" - } - }, - { - "id": 10891, - "properties": { - "facing": "south" - } - }, - { - "id": 10892, - "properties": { - "facing": "west" - } - }, - { - "id": 10893, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:lime_wool": { - "states": [ - { - "default": true, - "id": 2048 - } - ] - }, - "minecraft:lodestone": { - "states": [ - { - "default": true, - "id": 19300 - } - ] - }, - "minecraft:loom": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 18245, - "properties": { - "facing": "north" - } - }, - { - "id": 18246, - "properties": { - "facing": "south" - } - }, - { - "id": 18247, - "properties": { - "facing": "west" - } - }, - { - "id": 18248, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:magenta_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10646, - "properties": { - "rotation": "0" - } - }, - { - "id": 10647, - "properties": { - "rotation": "1" - } - }, - { - "id": 10648, - "properties": { - "rotation": "2" - } - }, - { - "id": 10649, - "properties": { - "rotation": "3" - } - }, - { - "id": 10650, - "properties": { - "rotation": "4" - } - }, - { - "id": 10651, - "properties": { - "rotation": "5" - } - }, - { - "id": 10652, - "properties": { - "rotation": "6" - } - }, - { - "id": 10653, - "properties": { - "rotation": "7" - } - }, - { - "id": 10654, - "properties": { - "rotation": "8" - } - }, - { - "id": 10655, - "properties": { - "rotation": "9" - } - }, - { - "id": 10656, - "properties": { - "rotation": "10" - } - }, - { - "id": 10657, - "properties": { - "rotation": "11" - } - }, - { - "id": 10658, - "properties": { - "rotation": "12" - } - }, - { - "id": 10659, - "properties": { - "rotation": "13" - } - }, - { - "id": 10660, - "properties": { - "rotation": "14" - } - }, - { - "id": 10661, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:magenta_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1716, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1717, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1718, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1719, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1720, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1721, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1722, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1723, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1724, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1725, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1726, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1727, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1728, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1729, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1730, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1731, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:magenta_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20614, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20615, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20616, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20617, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20618, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20619, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20620, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20621, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20622, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20623, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20624, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20625, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20626, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20627, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20628, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20629, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:magenta_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20844, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20845, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:magenta_carpet": { - "states": [ - { - "default": true, - "id": 10585 - } - ] - }, - "minecraft:magenta_concrete": { - "states": [ - { - "default": true, - "id": 12574 - } - ] - }, - "minecraft:magenta_concrete_powder": { - "states": [ - { - "default": true, - "id": 12590 - } - ] - }, - "minecraft:magenta_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12516, - "properties": { - "facing": "north" - } - }, - { - "id": 12517, - "properties": { - "facing": "south" - } - }, - { - "id": 12518, - "properties": { - "facing": "west" - } - }, - { - "id": 12519, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:magenta_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12424, - "properties": { - "facing": "north" - } - }, - { - "id": 12425, - "properties": { - "facing": "east" - } - }, - { - "id": 12426, - "properties": { - "facing": "south" - } - }, - { - "id": 12427, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12428, - "properties": { - "facing": "up" - } - }, - { - "id": 12429, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:magenta_stained_glass": { - "states": [ - { - "default": true, - "id": 5944 - } - ] - }, - "minecraft:magenta_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9292, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9293, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9294, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9295, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9296, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9297, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9298, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9299, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9300, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9301, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9302, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9303, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9304, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9305, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9306, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9307, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9308, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9309, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9310, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9311, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9312, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9313, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9314, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9315, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9316, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9317, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9318, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9319, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9320, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9321, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9322, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9323, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:magenta_terracotta": { - "states": [ - { - "default": true, - "id": 9214 - } - ] - }, - "minecraft:magenta_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10878, - "properties": { - "facing": "north" - } - }, - { - "id": 10879, - "properties": { - "facing": "south" - } - }, - { - "id": 10880, - "properties": { - "facing": "west" - } - }, - { - "id": 10881, - "properties": { - "facing": "east" - } - } - ] - }, "minecraft:magenta_wool": { "states": [ { "default": true, - "id": 2045 + "id": 2049 } ] }, @@ -110809,7 +114381,7 @@ "states": [ { "default": true, - "id": 12387 + "id": 12402 } ] }, @@ -110832,43 +114404,11 @@ ] }, "states": [ - { - "id": 8775, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8776, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8777, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8778, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 8779, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -110876,7 +114416,7 @@ "id": 8780, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -110884,7 +114424,7 @@ "id": 8781, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -110892,12 +114432,44 @@ "id": 8782, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8783, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8784, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8785, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8786, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8787, "properties": { "face": "wall", "facing": "north", @@ -110906,42 +114478,10 @@ }, { "default": true, - "id": 8784, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8785, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8786, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8787, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 8788, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -110949,7 +114489,7 @@ "id": 8789, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -110957,39 +114497,39 @@ "id": 8790, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8791, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 8792, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 8793, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 8794, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -110997,7 +114537,7 @@ "id": 8795, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -111005,7 +114545,7 @@ "id": 8796, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -111013,12 +114553,44 @@ "id": 8797, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 8798, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8799, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8800, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8801, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8802, "properties": { "face": "ceiling", "facing": "east", @@ -111053,52 +114625,12 @@ ] }, "states": [ - { - "id": 12061, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12062, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12063, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12064, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 12065, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111108,7 +114640,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111118,7 +114650,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111128,13 +114660,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 12069, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12070, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12071, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12072, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12073, "properties": { "facing": "north", "half": "lower", @@ -111144,7 +114716,7 @@ } }, { - "id": 12070, + "id": 12074, "properties": { "facing": "north", "half": "lower", @@ -111154,7 +114726,7 @@ } }, { - "id": 12071, + "id": 12075, "properties": { "facing": "north", "half": "lower", @@ -111165,51 +114737,11 @@ }, { "default": true, - "id": 12072, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12073, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12074, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12075, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 12076, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111217,9 +114749,9 @@ { "id": 12077, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -111227,9 +114759,9 @@ { "id": 12078, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -111237,9 +114769,9 @@ { "id": 12079, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -111247,9 +114779,9 @@ { "id": 12080, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -111259,7 +114791,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111269,7 +114801,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111279,7 +114811,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111289,7 +114821,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111298,8 +114830,8 @@ "id": 12085, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -111308,8 +114840,8 @@ "id": 12086, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -111318,8 +114850,8 @@ "id": 12087, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -111328,8 +114860,8 @@ "id": 12088, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -111339,7 +114871,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111349,7 +114881,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111359,7 +114891,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111369,7 +114901,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111377,9 +114909,9 @@ { "id": 12093, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -111387,9 +114919,9 @@ { "id": 12094, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -111397,9 +114929,9 @@ { "id": 12095, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -111407,9 +114939,9 @@ { "id": 12096, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -111419,7 +114951,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111429,7 +114961,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111439,7 +114971,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111449,7 +114981,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111458,8 +114990,8 @@ "id": 12101, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -111468,8 +115000,8 @@ "id": 12102, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -111478,8 +115010,8 @@ "id": 12103, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -111488,8 +115020,8 @@ "id": 12104, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -111499,7 +115031,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111509,7 +115041,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111519,7 +115051,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111529,7 +115061,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111537,9 +115069,9 @@ { "id": 12109, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -111547,9 +115079,9 @@ { "id": 12110, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -111557,9 +115089,9 @@ { "id": 12111, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -111567,9 +115099,9 @@ { "id": 12112, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -111579,7 +115111,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111589,7 +115121,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111599,7 +115131,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -111609,7 +115141,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -111618,8 +115150,8 @@ "id": 12117, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -111628,8 +115160,8 @@ "id": 12118, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -111638,8 +115170,8 @@ "id": 12119, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -111648,8 +115180,8 @@ "id": 12120, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -111659,7 +115191,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -111669,7 +115201,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -111679,13 +115211,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 12124, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12125, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12126, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12127, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12128, "properties": { "facing": "east", "half": "lower", @@ -111720,52 +115292,12 @@ ] }, "states": [ - { - "id": 11613, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11614, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11615, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11616, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 11617, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -111775,7 +115307,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -111785,7 +115317,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -111795,7 +115327,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -111804,8 +115336,8 @@ "id": 11621, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -111814,8 +115346,8 @@ "id": 11622, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -111824,8 +115356,8 @@ "id": 11623, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -111834,8 +115366,8 @@ "id": 11624, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -111845,7 +115377,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -111855,7 +115387,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -111865,7 +115397,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -111875,7 +115407,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -111883,9 +115415,9 @@ { "id": 11629, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -111893,9 +115425,9 @@ { "id": 11630, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -111903,9 +115435,9 @@ { "id": 11631, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -111913,9 +115445,9 @@ { "id": 11632, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -111925,7 +115457,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -111935,7 +115467,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -111945,7 +115477,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -111955,7 +115487,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -111964,8 +115496,8 @@ "id": 11637, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -111974,8 +115506,8 @@ "id": 11638, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -111984,8 +115516,8 @@ "id": 11639, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -111994,8 +115526,8 @@ "id": 11640, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -112005,7 +115537,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -112015,13 +115547,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 11643, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11644, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11645, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11646, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11647, "properties": { "east": "false", "north": "false", @@ -112032,7 +115604,7 @@ }, { "default": true, - "id": 11644, + "id": 11648, "properties": { "east": "false", "north": "false", @@ -112065,47 +115637,11 @@ ] }, "states": [ - { - "id": 11357, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11358, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11359, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11360, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11361, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -112114,13 +115650,49 @@ "id": 11362, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } }, { "id": 11363, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11364, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11365, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11366, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11367, "properties": { "facing": "north", "in_wall": "false", @@ -112130,7 +115702,7 @@ }, { "default": true, - "id": 11364, + "id": 11368, "properties": { "facing": "north", "in_wall": "false", @@ -112138,47 +115710,11 @@ "powered": "false" } }, - { - "id": 11365, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11366, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11367, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11368, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11369, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -112187,7 +115723,7 @@ "id": 11370, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -112196,7 +115732,7 @@ "id": 11371, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -112205,7 +115741,7 @@ "id": 11372, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -112213,8 +115749,8 @@ { "id": 11373, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "true" } @@ -112222,8 +115758,8 @@ { "id": 11374, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "false" } @@ -112231,8 +115767,8 @@ { "id": 11375, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "true" } @@ -112240,8 +115776,8 @@ { "id": 11376, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "false" } @@ -112250,7 +115786,7 @@ "id": 11377, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -112259,7 +115795,7 @@ "id": 11378, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -112268,7 +115804,7 @@ "id": 11379, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -112277,7 +115813,7 @@ "id": 11380, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -112285,8 +115821,8 @@ { "id": 11381, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "true" } @@ -112294,8 +115830,8 @@ { "id": 11382, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "false" } @@ -112303,8 +115839,8 @@ { "id": 11383, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "true" } @@ -112312,8 +115848,8 @@ { "id": 11384, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "false" } @@ -112322,7 +115858,7 @@ "id": 11385, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -112331,7 +115867,7 @@ "id": 11386, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -112340,13 +115876,49 @@ "id": 11387, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } }, { "id": 11388, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11389, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11390, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11391, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11392, "properties": { "facing": "east", "in_wall": "false", @@ -112386,43 +115958,11 @@ ] }, "states": [ - { - "id": 5406, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5407, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5408, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5409, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 5410, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -112430,7 +115970,7 @@ "id": 5411, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -112438,7 +115978,7 @@ "id": 5412, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -112446,7 +115986,7 @@ "id": 5413, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -112454,7 +115994,7 @@ "id": 5414, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -112462,7 +116002,7 @@ "id": 5415, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -112470,7 +116010,7 @@ "id": 5416, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -112478,7 +116018,7 @@ "id": 5417, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -112486,7 +116026,7 @@ "id": 5418, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -112494,7 +116034,7 @@ "id": 5419, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -112502,7 +116042,7 @@ "id": 5420, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -112510,7 +116050,7 @@ "id": 5421, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -112518,7 +116058,7 @@ "id": 5422, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -112526,7 +116066,7 @@ "id": 5423, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -112534,7 +116074,7 @@ "id": 5424, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -112542,7 +116082,7 @@ "id": 5425, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -112550,7 +116090,7 @@ "id": 5426, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -112558,7 +116098,7 @@ "id": 5427, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -112566,7 +116106,7 @@ "id": 5428, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -112574,7 +116114,7 @@ "id": 5429, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -112582,7 +116122,7 @@ "id": 5430, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -112590,7 +116130,7 @@ "id": 5431, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -112598,7 +116138,7 @@ "id": 5432, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -112606,7 +116146,7 @@ "id": 5433, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -112614,7 +116154,7 @@ "id": 5434, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -112622,7 +116162,7 @@ "id": 5435, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -112630,7 +116170,7 @@ "id": 5436, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -112638,12 +116178,44 @@ "id": 5437, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 5438, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5439, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5440, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5441, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5442, "properties": { "attached": "false", "rotation": "0", @@ -112652,50 +116224,18 @@ }, { "default": true, - "id": 5439, + "id": 5443, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5440, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5441, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5442, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5443, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 5444, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -112703,7 +116243,7 @@ "id": 5445, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -112711,7 +116251,7 @@ "id": 5446, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -112719,7 +116259,7 @@ "id": 5447, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -112727,7 +116267,7 @@ "id": 5448, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -112735,7 +116275,7 @@ "id": 5449, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -112743,7 +116283,7 @@ "id": 5450, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -112751,7 +116291,7 @@ "id": 5451, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -112759,7 +116299,7 @@ "id": 5452, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -112767,7 +116307,7 @@ "id": 5453, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -112775,7 +116315,7 @@ "id": 5454, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -112783,7 +116323,7 @@ "id": 5455, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -112791,7 +116331,7 @@ "id": 5456, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -112799,7 +116339,7 @@ "id": 5457, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -112807,7 +116347,7 @@ "id": 5458, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -112815,7 +116355,7 @@ "id": 5459, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -112823,7 +116363,7 @@ "id": 5460, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -112831,7 +116371,7 @@ "id": 5461, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -112839,7 +116379,7 @@ "id": 5462, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -112847,7 +116387,7 @@ "id": 5463, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -112855,7 +116395,7 @@ "id": 5464, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -112863,7 +116403,7 @@ "id": 5465, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -112871,7 +116411,7 @@ "id": 5466, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -112879,7 +116419,7 @@ "id": 5467, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -112887,12 +116427,44 @@ "id": 5468, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 5469, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5470, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5471, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5472, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5473, "properties": { "attached": "false", "rotation": "15", @@ -112922,42 +116494,10 @@ ] }, "states": [ - { - "id": 429, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 430, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 431, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 432, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 433, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -112965,7 +116505,7 @@ { "id": 434, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -112973,7 +116513,7 @@ { "id": 435, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -112981,7 +116521,7 @@ { "id": 436, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -112989,7 +116529,7 @@ { "id": 437, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -112997,7 +116537,7 @@ { "id": 438, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -113005,7 +116545,7 @@ { "id": 439, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -113013,7 +116553,7 @@ { "id": 440, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -113021,7 +116561,7 @@ { "id": 441, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -113029,7 +116569,7 @@ { "id": 442, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -113037,7 +116577,7 @@ { "id": 443, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -113045,7 +116585,7 @@ { "id": 444, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -113053,7 +116593,7 @@ { "id": 445, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -113061,7 +116601,7 @@ { "id": 446, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -113069,7 +116609,7 @@ { "id": 447, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -113077,7 +116617,7 @@ { "id": 448, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -113085,7 +116625,7 @@ { "id": 449, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -113093,7 +116633,7 @@ { "id": 450, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "false" } @@ -113101,7 +116641,7 @@ { "id": 451, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "true" } @@ -113109,7 +116649,7 @@ { "id": 452, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "false" } @@ -113117,7 +116657,7 @@ { "id": 453, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "true" } @@ -113125,13 +116665,45 @@ { "id": 454, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "false" } }, { "id": 455, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 456, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 457, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 458, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 459, "properties": { "distance": "7", "persistent": "false", @@ -113140,7 +116712,7 @@ }, { "default": true, - "id": 456, + "id": 460, "properties": { "distance": "7", "persistent": "false", @@ -113159,20 +116731,20 @@ }, "states": [ { - "id": 147, + "id": 151, "properties": { "axis": "x" } }, { "default": true, - "id": 148, + "id": 152, "properties": { "axis": "y" } }, { - "id": 149, + "id": 153, "properties": { "axis": "z" } @@ -113196,14 +116768,14 @@ }, "states": [ { - "id": 5726, + "id": 5730, "properties": { "powered": "true" } }, { "default": true, - "id": 5727, + "id": 5731, "properties": { "powered": "false" } @@ -113605,14 +117177,14 @@ }, "states": [ { - "id": 150, + "id": 154, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 151, + "id": 155, "properties": { "waterlogged": "false" } @@ -113646,7 +117218,7 @@ }, "states": [ { - "id": 4522, + "id": 4526, "properties": { "rotation": "0", "waterlogged": "true" @@ -113654,217 +117226,217 @@ }, { "default": true, - "id": 4523, + "id": 4527, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4524, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4525, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4526, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4527, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4528, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, { "id": 4529, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, { "id": 4530, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, { "id": 4531, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, { "id": 4532, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, { "id": 4533, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, { "id": 4534, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, { "id": 4535, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, { "id": 4536, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, { "id": 4537, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, { "id": 4538, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, { "id": 4539, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, { "id": 4540, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, { "id": 4541, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, { "id": 4542, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, { "id": 4543, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, { "id": 4544, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, { "id": 4545, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, { "id": 4546, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, { "id": 4547, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, { "id": 4548, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, { "id": 4549, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, { "id": 4550, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, { "id": 4551, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, { "id": 4552, "properties": { - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4553, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4554, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4555, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4556, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4557, "properties": { "rotation": "15", "waterlogged": "false" @@ -113886,21 +117458,21 @@ }, "states": [ { - "id": 11059, + "id": 11063, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11060, + "id": 11064, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11061, + "id": 11065, "properties": { "type": "bottom", "waterlogged": "true" @@ -113908,21 +117480,21 @@ }, { "default": true, - "id": 11062, + "id": 11066, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11063, + "id": 11067, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11064, + "id": 11068, "properties": { "type": "double", "waterlogged": "false" @@ -113955,48 +117527,12 @@ ] }, "states": [ - { - "id": 9980, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9981, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9982, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9983, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 9984, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114005,7 +117541,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114014,7 +117550,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114023,7 +117559,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114032,7 +117568,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114041,12 +117577,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 9990, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9991, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9992, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9993, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9994, "properties": { "facing": "north", "half": "bottom", @@ -114056,47 +117628,11 @@ }, { "default": true, - "id": 9991, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9992, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9993, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9994, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 9995, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114105,7 +117641,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114114,7 +117650,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114123,7 +117659,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114132,43 +117668,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 10000, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 10001, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 10002, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 10003, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114177,7 +117713,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114186,7 +117722,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114195,7 +117731,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114204,7 +117740,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114213,7 +117749,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114222,7 +117758,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -114230,8 +117766,8 @@ "id": 10010, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -114239,8 +117775,8 @@ "id": 10011, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -114248,8 +117784,8 @@ "id": 10012, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -114257,8 +117793,8 @@ "id": 10013, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114267,7 +117803,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114276,7 +117812,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114285,7 +117821,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114294,7 +117830,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114303,7 +117839,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114312,43 +117848,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 10020, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 10021, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 10022, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 10023, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114357,7 +117893,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114366,7 +117902,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114375,7 +117911,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114384,7 +117920,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114393,7 +117929,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114402,7 +117938,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -114410,8 +117946,8 @@ "id": 10030, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -114419,8 +117955,8 @@ "id": 10031, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -114428,8 +117964,8 @@ "id": 10032, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -114437,8 +117973,8 @@ "id": 10033, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114447,7 +117983,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114456,7 +117992,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114465,7 +118001,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114474,7 +118010,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114483,7 +118019,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114492,43 +118028,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 10040, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 10041, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 10042, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 10043, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114537,7 +118073,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114546,7 +118082,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114555,7 +118091,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114564,7 +118100,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114573,7 +118109,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -114582,7 +118118,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -114590,8 +118126,8 @@ "id": 10050, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -114599,8 +118135,8 @@ "id": 10051, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -114608,8 +118144,8 @@ "id": 10052, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -114617,8 +118153,8 @@ "id": 10053, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -114627,7 +118163,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -114636,7 +118172,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -114645,7 +118181,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -114654,7 +118190,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -114663,12 +118199,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 10059, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10060, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10061, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10062, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10063, "properties": { "facing": "east", "half": "bottom", @@ -114704,52 +118276,12 @@ ] }, "states": [ - { - "id": 6406, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6407, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6408, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6409, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6410, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -114759,7 +118291,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -114769,7 +118301,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -114779,7 +118311,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -114788,8 +118320,8 @@ "id": 6414, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -114798,8 +118330,8 @@ "id": 6415, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -114808,8 +118340,8 @@ "id": 6416, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -114818,8 +118350,8 @@ "id": 6417, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -114829,7 +118361,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -114839,13 +118371,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 6420, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6421, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6422, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6423, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6424, "properties": { "facing": "north", "half": "bottom", @@ -114856,7 +118428,7 @@ }, { "default": true, - "id": 6421, + "id": 6425, "properties": { "facing": "north", "half": "bottom", @@ -114865,52 +118437,12 @@ "waterlogged": "false" } }, - { - "id": 6422, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6423, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6424, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6425, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6426, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -114920,7 +118452,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -114930,7 +118462,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -114940,7 +118472,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -114949,8 +118481,8 @@ "id": 6430, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -114959,8 +118491,8 @@ "id": 6431, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -114969,8 +118501,8 @@ "id": 6432, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -114979,8 +118511,8 @@ "id": 6433, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -114990,7 +118522,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -115000,7 +118532,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -115010,7 +118542,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -115020,7 +118552,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -115028,9 +118560,9 @@ { "id": 6438, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -115038,9 +118570,9 @@ { "id": 6439, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -115048,9 +118580,9 @@ { "id": 6440, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -115058,9 +118590,9 @@ { "id": 6441, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -115070,7 +118602,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -115080,7 +118612,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -115090,7 +118622,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -115100,7 +118632,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -115109,8 +118641,8 @@ "id": 6446, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -115119,8 +118651,8 @@ "id": 6447, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -115129,8 +118661,8 @@ "id": 6448, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -115139,8 +118671,8 @@ "id": 6449, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -115150,7 +118682,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -115160,7 +118692,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -115170,7 +118702,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -115180,7 +118712,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -115188,9 +118720,9 @@ { "id": 6454, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -115198,9 +118730,9 @@ { "id": 6455, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -115208,9 +118740,9 @@ { "id": 6456, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -115218,9 +118750,9 @@ { "id": 6457, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -115230,7 +118762,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -115240,7 +118772,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -115250,7 +118782,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -115260,7 +118792,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -115269,8 +118801,8 @@ "id": 6462, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -115279,8 +118811,8 @@ "id": 6463, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -115289,8 +118821,8 @@ "id": 6464, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -115299,8 +118831,8 @@ "id": 6465, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -115310,7 +118842,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -115320,7 +118852,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -115330,13 +118862,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 6469, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6470, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6471, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6472, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6473, "properties": { "facing": "east", "half": "bottom", @@ -115362,7 +118934,7 @@ }, "states": [ { - "id": 5590, + "id": 5594, "properties": { "facing": "north", "waterlogged": "true" @@ -115370,49 +118942,49 @@ }, { "default": true, - "id": 5591, + "id": 5595, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5592, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5593, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5594, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5595, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5596, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5597, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5598, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5599, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5600, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5597, + "id": 5601, "properties": { "facing": "east", "waterlogged": "false" @@ -115435,7 +119007,7 @@ }, "states": [ { - "id": 4814, + "id": 4818, "properties": { "facing": "north", "waterlogged": "true" @@ -115443,49 +119015,49 @@ }, { "default": true, - "id": 4815, + "id": 4819, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4816, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4817, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4818, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4819, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4820, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4821, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4822, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4823, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4824, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4821, + "id": 4825, "properties": { "facing": "east", "waterlogged": "false" @@ -115503,20 +119075,20 @@ }, "states": [ { - "id": 206, + "id": 210, "properties": { "axis": "x" } }, { "default": true, - "id": 207, + "id": 211, "properties": { "axis": "y" } }, { - "id": 208, + "id": 212, "properties": { "axis": "z" } @@ -115540,63 +119112,63 @@ }, "states": [ { - "id": 20898, + "id": 20916, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 20899, + "id": 20917, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 20900, + "id": 20918, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 20901, + "id": 20919, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 20902, + "id": 20920, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 20903, + "id": 20921, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 20904, + "id": 20922, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 20905, + "id": 20923, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 20906, + "id": 20924, "properties": { "facing": "up", "waterlogged": "true" @@ -115604,21 +119176,21 @@ }, { "default": true, - "id": 20907, + "id": 20925, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 20908, + "id": 20926, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 20909, + "id": 20927, "properties": { "facing": "down", "waterlogged": "false" @@ -115630,7 +119202,7 @@ "states": [ { "default": true, - "id": 6808 + "id": 6812 } ] }, @@ -115650,49 +119222,49 @@ "states": [ { "default": true, - "id": 6825, + "id": 6829, "properties": { "age": "0" } }, { - "id": 6826, + "id": 6830, "properties": { "age": "1" } }, { - "id": 6827, + "id": 6831, "properties": { "age": "2" } }, { - "id": 6828, + "id": 6832, "properties": { "age": "3" } }, { - "id": 6829, + "id": 6833, "properties": { "age": "4" } }, { - "id": 6830, + "id": 6834, "properties": { "age": "5" } }, { - "id": 6831, + "id": 6835, "properties": { "age": "6" } }, { - "id": 6832, + "id": 6836, "properties": { "age": "7" } @@ -115703,7 +119275,7 @@ "states": [ { "default": true, - "id": 21986 + "id": 22388 } ] }, @@ -115711,7 +119283,7 @@ "states": [ { "default": true, - "id": 21969 + "id": 22371 } ] }, @@ -115719,7 +119291,7 @@ "states": [ { "default": true, - "id": 2349 + "id": 2353 } ] }, @@ -115737,21 +119309,21 @@ }, "states": [ { - "id": 13947, + "id": 13965, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13948, + "id": 13966, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13949, + "id": 13967, "properties": { "type": "bottom", "waterlogged": "true" @@ -115759,21 +119331,21 @@ }, { "default": true, - "id": 13950, + "id": 13968, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13951, + "id": 13969, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13952, + "id": 13970, "properties": { "type": "double", "waterlogged": "false" @@ -115807,7 +119379,7 @@ }, "states": [ { - "id": 13123, + "id": 13141, "properties": { "facing": "north", "half": "top", @@ -115816,7 +119388,7 @@ } }, { - "id": 13124, + "id": 13142, "properties": { "facing": "north", "half": "top", @@ -115825,7 +119397,7 @@ } }, { - "id": 13125, + "id": 13143, "properties": { "facing": "north", "half": "top", @@ -115834,7 +119406,7 @@ } }, { - "id": 13126, + "id": 13144, "properties": { "facing": "north", "half": "top", @@ -115843,7 +119415,7 @@ } }, { - "id": 13127, + "id": 13145, "properties": { "facing": "north", "half": "top", @@ -115852,7 +119424,7 @@ } }, { - "id": 13128, + "id": 13146, "properties": { "facing": "north", "half": "top", @@ -115861,7 +119433,7 @@ } }, { - "id": 13129, + "id": 13147, "properties": { "facing": "north", "half": "top", @@ -115870,7 +119442,7 @@ } }, { - "id": 13130, + "id": 13148, "properties": { "facing": "north", "half": "top", @@ -115879,7 +119451,7 @@ } }, { - "id": 13131, + "id": 13149, "properties": { "facing": "north", "half": "top", @@ -115888,7 +119460,7 @@ } }, { - "id": 13132, + "id": 13150, "properties": { "facing": "north", "half": "top", @@ -115897,7 +119469,7 @@ } }, { - "id": 13133, + "id": 13151, "properties": { "facing": "north", "half": "bottom", @@ -115907,250 +119479,250 @@ }, { "default": true, - "id": 13134, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13135, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13136, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13137, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13138, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13139, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13140, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13141, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13142, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13143, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13144, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13145, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13146, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13147, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13148, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13149, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13150, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13151, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13152, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13153, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13154, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13155, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13156, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13157, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13158, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13159, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13160, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13161, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13162, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13163, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13164, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13165, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13166, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13167, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13168, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13169, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13172, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13173, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13179, "properties": { "facing": "south", "half": "bottom", @@ -116159,7 +119731,7 @@ } }, { - "id": 13162, + "id": 13180, "properties": { "facing": "south", "half": "bottom", @@ -116167,174 +119739,12 @@ "waterlogged": "false" } }, - { - "id": 13163, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13164, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13165, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13166, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13167, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13168, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13169, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13170, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13171, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13172, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13173, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13174, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13175, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13176, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13177, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13178, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13179, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13180, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13181, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -116342,175 +119752,337 @@ "id": 13182, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13183, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13184, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13185, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13186, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13187, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13188, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13189, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13190, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13191, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13192, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13193, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13194, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13195, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13196, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13197, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13198, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13199, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13200, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13201, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13202, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13203, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13204, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13205, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13207, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13208, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13209, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13212, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13213, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13219, "properties": { "facing": "east", "half": "bottom", @@ -116519,7 +120091,7 @@ } }, { - "id": 13202, + "id": 13220, "properties": { "facing": "east", "half": "bottom", @@ -116562,7 +120134,7 @@ }, "states": [ { - "id": 8239, + "id": 8243, "properties": { "east": "none", "north": "none", @@ -116573,7 +120145,7 @@ } }, { - "id": 8240, + "id": 8244, "properties": { "east": "none", "north": "none", @@ -116584,7 +120156,7 @@ } }, { - "id": 8241, + "id": 8245, "properties": { "east": "none", "north": "none", @@ -116596,58 +120168,14 @@ }, { "default": true, - "id": 8242, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8243, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8244, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8245, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 8246, "properties": { "east": "none", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -116656,9 +120184,9 @@ "east": "none", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -116667,9 +120195,9 @@ "east": "none", "north": "none", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -116679,8 +120207,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -116690,8 +120218,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -116699,10 +120227,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -116710,10 +120238,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -116721,10 +120249,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -116732,10 +120260,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -116745,8 +120273,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -116756,8 +120284,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -116766,9 +120294,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -116777,9 +120305,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -116788,9 +120316,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -116799,9 +120327,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -116811,8 +120339,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -116822,8 +120350,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -116831,10 +120359,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -116842,10 +120370,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -116853,10 +120381,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -116864,10 +120392,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -116877,8 +120405,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -116888,8 +120416,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -116898,9 +120426,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -116909,9 +120437,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -116920,9 +120448,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -116931,9 +120459,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -116943,8 +120471,8 @@ "north": "none", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -116954,52 +120482,52 @@ "north": "none", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { "id": 8275, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8276, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { "id": 8277, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { "id": 8278, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117009,8 +120537,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117020,8 +120548,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117030,9 +120558,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117041,9 +120569,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117052,9 +120580,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117063,9 +120591,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117075,8 +120603,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117086,8 +120614,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117095,10 +120623,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117106,10 +120634,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -117117,10 +120645,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -117128,10 +120656,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117141,8 +120669,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117152,8 +120680,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117162,9 +120690,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117173,9 +120701,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117184,9 +120712,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117195,9 +120723,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117207,8 +120735,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117218,8 +120746,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117227,10 +120755,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117238,10 +120766,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -117249,10 +120777,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -117260,10 +120788,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117273,8 +120801,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117284,8 +120812,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117294,9 +120822,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117305,9 +120833,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117316,9 +120844,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117327,9 +120855,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117339,8 +120867,8 @@ "north": "low", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117350,52 +120878,52 @@ "north": "low", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { "id": 8311, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8312, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { "id": 8313, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { "id": 8314, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117405,8 +120933,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117416,8 +120944,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117426,9 +120954,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117437,9 +120965,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117448,9 +120976,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117459,9 +120987,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117471,8 +120999,8 @@ "north": "tall", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117482,8 +121010,8 @@ "north": "tall", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117491,10 +121019,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117502,10 +121030,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -117513,10 +121041,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -117524,10 +121052,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117537,8 +121065,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117548,8 +121076,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117558,9 +121086,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117569,9 +121097,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117580,9 +121108,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117591,9 +121119,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117603,8 +121131,8 @@ "north": "tall", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117614,8 +121142,8 @@ "north": "tall", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117623,10 +121151,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117634,10 +121162,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -117645,10 +121173,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -117656,10 +121184,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117669,8 +121197,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117680,8 +121208,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117690,9 +121218,9 @@ "east": "none", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117701,9 +121229,9 @@ "east": "none", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117712,9 +121240,9 @@ "east": "none", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117723,13 +121251,57 @@ "east": "none", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8345, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8346, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8347, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8348, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8349, "properties": { "east": "none", "north": "tall", @@ -117740,7 +121312,7 @@ } }, { - "id": 8346, + "id": 8350, "properties": { "east": "none", "north": "tall", @@ -117750,50 +121322,6 @@ "west": "tall" } }, - { - "id": 8347, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8348, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8349, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8350, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8351, "properties": { @@ -117801,8 +121329,8 @@ "north": "none", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117812,8 +121340,8 @@ "north": "none", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117822,9 +121350,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117833,9 +121361,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117844,9 +121372,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117855,9 +121383,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117867,8 +121395,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117878,8 +121406,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117887,10 +121415,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117898,10 +121426,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -117909,10 +121437,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -117920,10 +121448,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117933,8 +121461,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -117944,8 +121472,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -117954,9 +121482,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -117965,9 +121493,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -117976,9 +121504,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -117987,9 +121515,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -117999,8 +121527,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118010,8 +121538,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118019,10 +121547,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118030,10 +121558,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -118041,10 +121569,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -118052,10 +121580,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118065,8 +121593,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118076,8 +121604,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118086,9 +121614,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118097,9 +121625,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118108,9 +121636,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118119,9 +121647,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118131,8 +121659,8 @@ "north": "none", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118142,52 +121670,52 @@ "north": "none", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { "id": 8383, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8384, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { "id": 8385, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { "id": 8386, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118197,8 +121725,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118208,8 +121736,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118218,9 +121746,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118229,9 +121757,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118240,9 +121768,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118251,9 +121779,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118263,8 +121791,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118274,8 +121802,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118283,10 +121811,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118294,10 +121822,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -118305,10 +121833,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -118316,10 +121844,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118329,8 +121857,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118340,8 +121868,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118350,9 +121878,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118361,9 +121889,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118372,9 +121900,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118383,9 +121911,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118395,8 +121923,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118406,8 +121934,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118415,10 +121943,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118426,10 +121954,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -118437,10 +121965,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -118448,10 +121976,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118461,8 +121989,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118472,8 +122000,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118482,9 +122010,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118493,9 +122021,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118504,9 +122032,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118515,9 +122043,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118527,8 +122055,8 @@ "north": "low", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118538,52 +122066,52 @@ "north": "low", "south": "tall", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { "id": 8419, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8420, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { "id": 8421, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { "id": 8422, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118593,8 +122121,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118604,8 +122132,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118614,9 +122142,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118625,9 +122153,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118636,9 +122164,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118647,9 +122175,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118659,8 +122187,8 @@ "north": "tall", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118670,8 +122198,8 @@ "north": "tall", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118679,10 +122207,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118690,10 +122218,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -118701,10 +122229,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -118712,10 +122240,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118725,8 +122253,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118736,8 +122264,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118746,9 +122274,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118757,9 +122285,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118768,9 +122296,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118779,9 +122307,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118791,8 +122319,8 @@ "north": "tall", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118802,8 +122330,8 @@ "north": "tall", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118811,10 +122339,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118822,10 +122350,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -118833,10 +122361,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -118844,10 +122372,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -118857,8 +122385,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -118868,8 +122396,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -118878,9 +122406,9 @@ "east": "low", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -118889,9 +122417,9 @@ "east": "low", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -118900,9 +122428,9 @@ "east": "low", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -118911,13 +122439,57 @@ "east": "low", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8453, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8454, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8455, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8456, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8457, "properties": { "east": "low", "north": "tall", @@ -118928,7 +122500,7 @@ } }, { - "id": 8454, + "id": 8458, "properties": { "east": "low", "north": "tall", @@ -118938,50 +122510,6 @@ "west": "tall" } }, - { - "id": 8455, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8456, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8457, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8458, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8459, "properties": { @@ -118989,8 +122517,8 @@ "north": "none", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119000,8 +122528,8 @@ "north": "none", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119010,9 +122538,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119021,9 +122549,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119032,9 +122560,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119043,9 +122571,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119055,8 +122583,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119066,8 +122594,8 @@ "north": "none", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119075,10 +122603,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119086,10 +122614,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -119097,10 +122625,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -119108,10 +122636,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119121,8 +122649,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119132,8 +122660,8 @@ "north": "none", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119142,9 +122670,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119153,9 +122681,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119164,9 +122692,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119175,9 +122703,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119187,8 +122715,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119198,8 +122726,8 @@ "north": "none", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119207,10 +122735,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119218,10 +122746,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -119229,10 +122757,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -119240,10 +122768,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119253,8 +122781,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119264,8 +122792,8 @@ "north": "none", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119274,9 +122802,9 @@ "east": "tall", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119285,9 +122813,9 @@ "east": "tall", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119296,9 +122824,9 @@ "east": "tall", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119307,13 +122835,57 @@ "east": "tall", "north": "none", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8489, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8490, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8491, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8492, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8493, "properties": { "east": "tall", "north": "none", @@ -119324,7 +122896,7 @@ } }, { - "id": 8490, + "id": 8494, "properties": { "east": "tall", "north": "none", @@ -119334,50 +122906,6 @@ "west": "tall" } }, - { - "id": 8491, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8492, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8493, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8494, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8495, "properties": { @@ -119385,8 +122913,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119396,8 +122924,8 @@ "north": "low", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119406,9 +122934,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119417,9 +122945,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119428,9 +122956,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119439,9 +122967,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119451,8 +122979,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119462,8 +122990,8 @@ "north": "low", "south": "none", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119471,10 +122999,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119482,10 +123010,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -119493,10 +123021,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -119504,10 +123032,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119517,8 +123045,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119528,8 +123056,8 @@ "north": "low", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119538,9 +123066,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119549,9 +123077,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119560,9 +123088,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119571,9 +123099,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119583,8 +123111,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119594,8 +123122,8 @@ "north": "low", "south": "low", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119603,10 +123131,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119614,10 +123142,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { @@ -119625,10 +123153,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { @@ -119636,10 +123164,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -119649,8 +123177,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119660,8 +123188,8 @@ "north": "low", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119670,9 +123198,9 @@ "east": "tall", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119681,9 +123209,9 @@ "east": "tall", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119692,9 +123220,9 @@ "east": "tall", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119703,13 +123231,57 @@ "east": "tall", "north": "low", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8525, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8526, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8527, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8528, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8529, "properties": { "east": "tall", "north": "low", @@ -119720,7 +123292,7 @@ } }, { - "id": 8526, + "id": 8530, "properties": { "east": "tall", "north": "low", @@ -119730,50 +123302,6 @@ "west": "tall" } }, - { - "id": 8527, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8528, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8529, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8530, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8531, "properties": { @@ -119781,8 +123309,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119792,8 +123320,8 @@ "north": "tall", "south": "none", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119802,9 +123330,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119813,9 +123341,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119824,9 +123352,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119835,13 +123363,57 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8537, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8538, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8539, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8540, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8541, "properties": { "east": "tall", "north": "tall", @@ -119852,7 +123424,7 @@ } }, { - "id": 8538, + "id": 8542, "properties": { "east": "tall", "north": "tall", @@ -119862,50 +123434,6 @@ "west": "tall" } }, - { - "id": 8539, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8540, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8541, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8542, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8543, "properties": { @@ -119913,8 +123441,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -119924,8 +123452,8 @@ "north": "tall", "south": "low", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -119934,9 +123462,9 @@ "east": "tall", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -119945,9 +123473,9 @@ "east": "tall", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -119956,9 +123484,9 @@ "east": "tall", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -119967,13 +123495,57 @@ "east": "tall", "north": "tall", "south": "low", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8549, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8550, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8551, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8552, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8553, "properties": { "east": "tall", "north": "tall", @@ -119984,7 +123556,7 @@ } }, { - "id": 8550, + "id": 8554, "properties": { "east": "tall", "north": "tall", @@ -119994,50 +123566,6 @@ "west": "tall" } }, - { - "id": 8551, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8552, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8553, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8554, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8555, "properties": { @@ -120045,8 +123573,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "none" } }, { @@ -120056,8 +123584,8 @@ "north": "tall", "south": "tall", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "low" } }, { @@ -120066,9 +123594,9 @@ "east": "tall", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -120077,9 +123605,9 @@ "east": "tall", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "up": "true", + "waterlogged": "false", + "west": "none" } }, { @@ -120088,9 +123616,9 @@ "east": "tall", "north": "tall", "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "up": "true", + "waterlogged": "false", + "west": "low" } }, { @@ -120099,13 +123627,57 @@ "east": "tall", "north": "tall", "south": "tall", - "up": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8561, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8562, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8563, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8564, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8565, "properties": { "east": "tall", "north": "tall", @@ -120116,7 +123688,7 @@ } }, { - "id": 8562, + "id": 8566, "properties": { "east": "tall", "north": "tall", @@ -120142,21 +123714,21 @@ }, "states": [ { - "id": 13935, + "id": 13953, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13936, + "id": 13954, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13937, + "id": 13955, "properties": { "type": "bottom", "waterlogged": "true" @@ -120164,21 +123736,21 @@ }, { "default": true, - "id": 13938, + "id": 13956, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13939, + "id": 13957, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13940, + "id": 13958, "properties": { "type": "double", "waterlogged": "false" @@ -120212,7 +123784,7 @@ }, "states": [ { - "id": 12963, + "id": 12981, "properties": { "facing": "north", "half": "top", @@ -120221,7 +123793,7 @@ } }, { - "id": 12964, + "id": 12982, "properties": { "facing": "north", "half": "top", @@ -120230,7 +123802,7 @@ } }, { - "id": 12965, + "id": 12983, "properties": { "facing": "north", "half": "top", @@ -120239,7 +123811,7 @@ } }, { - "id": 12966, + "id": 12984, "properties": { "facing": "north", "half": "top", @@ -120248,7 +123820,7 @@ } }, { - "id": 12967, + "id": 12985, "properties": { "facing": "north", "half": "top", @@ -120257,7 +123829,7 @@ } }, { - "id": 12968, + "id": 12986, "properties": { "facing": "north", "half": "top", @@ -120266,7 +123838,7 @@ } }, { - "id": 12969, + "id": 12987, "properties": { "facing": "north", "half": "top", @@ -120275,7 +123847,7 @@ } }, { - "id": 12970, + "id": 12988, "properties": { "facing": "north", "half": "top", @@ -120284,7 +123856,7 @@ } }, { - "id": 12971, + "id": 12989, "properties": { "facing": "north", "half": "top", @@ -120293,7 +123865,7 @@ } }, { - "id": 12972, + "id": 12990, "properties": { "facing": "north", "half": "top", @@ -120302,7 +123874,7 @@ } }, { - "id": 12973, + "id": 12991, "properties": { "facing": "north", "half": "bottom", @@ -120312,250 +123884,250 @@ }, { "default": true, - "id": 12974, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12975, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12976, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12977, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12978, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12979, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12980, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12981, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12982, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12983, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12984, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12985, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12986, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12987, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12988, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12989, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12990, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12991, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 12992, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 12993, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 12994, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 12995, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 12996, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 12997, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 12998, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 12999, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13000, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13001, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13002, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13003, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13004, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13005, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13006, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13007, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13008, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13009, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13010, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13011, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13012, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13013, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13014, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13015, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13016, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13017, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13018, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13019, "properties": { "facing": "south", "half": "bottom", @@ -120564,7 +124136,7 @@ } }, { - "id": 13002, + "id": 13020, "properties": { "facing": "south", "half": "bottom", @@ -120572,174 +124144,12 @@ "waterlogged": "false" } }, - { - "id": 13003, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13004, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13005, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13006, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13007, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13008, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13009, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13010, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13011, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13012, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13013, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13014, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13015, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13016, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13017, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13018, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13019, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13020, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13021, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -120747,175 +124157,337 @@ "id": 13022, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13023, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13024, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13025, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13026, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13027, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13028, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13029, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13030, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13031, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13032, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13033, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13034, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13035, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13036, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13037, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13038, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13039, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13040, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13041, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13042, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13043, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13044, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13045, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13046, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13047, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13048, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13049, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13050, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13051, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13052, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13053, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13054, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13055, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13056, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13057, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13058, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13059, "properties": { "facing": "east", "half": "bottom", @@ -120924,7 +124496,7 @@ } }, { - "id": 13042, + "id": 13060, "properties": { "facing": "east", "half": "bottom", @@ -120967,7 +124539,7 @@ }, "states": [ { - "id": 14973, + "id": 14991, "properties": { "east": "none", "north": "none", @@ -120978,7 +124550,7 @@ } }, { - "id": 14974, + "id": 14992, "properties": { "east": "none", "north": "none", @@ -120989,7 +124561,7 @@ } }, { - "id": 14975, + "id": 14993, "properties": { "east": "none", "north": "none", @@ -121001,210 +124573,12 @@ }, { "default": true, - "id": 14976, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14977, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14978, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14979, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14980, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14981, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14982, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14983, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14984, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14985, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14986, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14987, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14988, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14989, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14990, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14991, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14992, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14993, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 14994, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121214,8 +124588,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121225,8 +124599,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121236,8 +124610,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121247,8 +124621,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121258,8 +124632,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121269,8 +124643,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121280,8 +124654,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121291,8 +124665,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121302,8 +124676,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121313,8 +124687,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121324,8 +124698,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121335,8 +124709,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121346,8 +124720,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121357,8 +124731,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121367,9 +124741,9 @@ "id": 15009, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121378,9 +124752,9 @@ "id": 15010, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121389,9 +124763,9 @@ "id": 15011, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121400,9 +124774,9 @@ "id": 15012, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121411,9 +124785,9 @@ "id": 15013, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121422,9 +124796,9 @@ "id": 15014, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121433,9 +124807,9 @@ "id": 15015, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121444,9 +124818,9 @@ "id": 15016, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121455,9 +124829,9 @@ "id": 15017, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121466,9 +124840,9 @@ "id": 15018, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121477,9 +124851,9 @@ "id": 15019, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121488,9 +124862,9 @@ "id": 15020, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121499,9 +124873,9 @@ "id": 15021, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121510,9 +124884,9 @@ "id": 15022, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121521,9 +124895,9 @@ "id": 15023, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121532,9 +124906,9 @@ "id": 15024, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121543,9 +124917,9 @@ "id": 15025, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121554,9 +124928,9 @@ "id": 15026, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121566,8 +124940,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121577,8 +124951,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121588,8 +124962,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121599,8 +124973,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121610,8 +124984,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121621,8 +124995,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121632,8 +125006,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121643,8 +125017,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121654,8 +125028,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121665,8 +125039,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121676,8 +125050,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121687,8 +125061,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121698,8 +125072,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121709,8 +125083,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121720,8 +125094,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121731,8 +125105,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121742,8 +125116,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121753,8 +125127,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121763,9 +125137,9 @@ "id": 15045, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121774,9 +125148,9 @@ "id": 15046, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121785,9 +125159,9 @@ "id": 15047, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121796,9 +125170,9 @@ "id": 15048, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121807,9 +125181,9 @@ "id": 15049, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121818,9 +125192,9 @@ "id": 15050, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121829,9 +125203,9 @@ "id": 15051, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121840,9 +125214,9 @@ "id": 15052, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121851,9 +125225,9 @@ "id": 15053, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121862,9 +125236,9 @@ "id": 15054, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -121873,9 +125247,9 @@ "id": 15055, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -121884,9 +125258,9 @@ "id": 15056, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -121895,9 +125269,9 @@ "id": 15057, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -121906,9 +125280,9 @@ "id": 15058, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -121917,9 +125291,9 @@ "id": 15059, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -121928,9 +125302,9 @@ "id": 15060, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -121939,9 +125313,9 @@ "id": 15061, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -121950,9 +125324,9 @@ "id": 15062, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -121962,8 +125336,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -121973,8 +125347,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -121984,8 +125358,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -121995,8 +125369,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122006,8 +125380,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122017,8 +125391,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122028,8 +125402,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122039,8 +125413,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122050,8 +125424,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122061,8 +125435,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122072,8 +125446,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -122083,8 +125457,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -122094,8 +125468,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122105,8 +125479,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122116,8 +125490,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122127,14 +125501,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15097, "properties": { "east": "none", "north": "tall", @@ -122145,7 +125717,7 @@ } }, { - "id": 15080, + "id": 15098, "properties": { "east": "none", "north": "tall", @@ -122155,211 +125727,13 @@ "west": "tall" } }, - { - "id": 15081, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15082, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15083, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15084, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15085, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15086, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15087, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15088, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15089, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15090, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15091, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15092, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15093, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15094, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15095, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15096, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15097, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15098, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15099, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122369,8 +125743,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122380,8 +125754,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122391,8 +125765,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122402,8 +125776,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122413,8 +125787,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122424,8 +125798,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122435,8 +125809,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122446,8 +125820,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122457,8 +125831,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122468,8 +125842,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -122479,8 +125853,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -122490,8 +125864,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122501,8 +125875,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122512,8 +125886,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122523,8 +125897,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122534,8 +125908,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122545,8 +125919,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122555,9 +125929,9 @@ "id": 15117, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122566,9 +125940,9 @@ "id": 15118, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122577,9 +125951,9 @@ "id": 15119, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122588,9 +125962,9 @@ "id": 15120, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122599,9 +125973,9 @@ "id": 15121, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -122610,9 +125984,9 @@ "id": 15122, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -122621,9 +125995,9 @@ "id": 15123, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122632,9 +126006,9 @@ "id": 15124, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122643,9 +126017,9 @@ "id": 15125, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122654,9 +126028,9 @@ "id": 15126, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122665,9 +126039,9 @@ "id": 15127, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122676,9 +126050,9 @@ "id": 15128, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122687,9 +126061,9 @@ "id": 15129, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122698,9 +126072,9 @@ "id": 15130, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122709,9 +126083,9 @@ "id": 15131, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122720,9 +126094,9 @@ "id": 15132, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122731,9 +126105,9 @@ "id": 15133, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -122742,9 +126116,9 @@ "id": 15134, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -122754,8 +126128,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122765,8 +126139,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122776,8 +126150,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122787,8 +126161,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122798,8 +126172,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122809,8 +126183,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122820,8 +126194,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122831,8 +126205,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122842,8 +126216,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122853,8 +126227,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122864,8 +126238,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -122875,8 +126249,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -122886,8 +126260,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -122897,8 +126271,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -122908,8 +126282,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -122919,8 +126293,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -122930,8 +126304,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -122941,8 +126315,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -122951,9 +126325,9 @@ "id": 15153, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -122962,9 +126336,9 @@ "id": 15154, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -122973,9 +126347,9 @@ "id": 15155, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -122984,9 +126358,9 @@ "id": 15156, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -122995,9 +126369,9 @@ "id": 15157, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -123006,9 +126380,9 @@ "id": 15158, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -123017,9 +126391,9 @@ "id": 15159, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123028,9 +126402,9 @@ "id": 15160, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123039,9 +126413,9 @@ "id": 15161, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123050,9 +126424,9 @@ "id": 15162, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -123061,9 +126435,9 @@ "id": 15163, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -123072,9 +126446,9 @@ "id": 15164, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -123083,9 +126457,9 @@ "id": 15165, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -123094,9 +126468,9 @@ "id": 15166, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -123105,9 +126479,9 @@ "id": 15167, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -123116,9 +126490,9 @@ "id": 15168, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -123127,9 +126501,9 @@ "id": 15169, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -123138,9 +126512,9 @@ "id": 15170, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -123150,8 +126524,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123161,8 +126535,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123172,8 +126546,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123183,8 +126557,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -123194,8 +126568,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -123205,8 +126579,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -123216,8 +126590,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -123227,8 +126601,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -123238,8 +126612,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -123249,8 +126623,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -123260,8 +126634,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -123271,8 +126645,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -123282,8 +126656,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123293,8 +126667,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123304,8 +126678,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123315,14 +126689,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15205, "properties": { "east": "low", "north": "tall", @@ -123333,7 +126905,7 @@ } }, { - "id": 15188, + "id": 15206, "properties": { "east": "low", "north": "tall", @@ -123343,211 +126915,13 @@ "west": "tall" } }, - { - "id": 15189, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15190, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15191, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15192, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15193, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15194, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15195, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15196, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15197, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15198, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15199, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15200, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15201, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15202, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15203, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15204, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15205, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15206, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15207, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123557,8 +126931,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123568,8 +126942,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123579,8 +126953,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -123590,8 +126964,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -123601,8 +126975,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -123612,8 +126986,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -123623,8 +126997,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -123634,8 +127008,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -123645,8 +127019,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -123656,8 +127030,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -123667,8 +127041,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -123678,8 +127052,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123689,8 +127063,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123700,8 +127074,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123711,14 +127085,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15241, "properties": { "east": "tall", "north": "none", @@ -123729,7 +127301,7 @@ } }, { - "id": 15224, + "id": 15242, "properties": { "east": "tall", "north": "none", @@ -123739,211 +127311,13 @@ "west": "tall" } }, - { - "id": 15225, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15226, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15227, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15228, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15229, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15230, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15231, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15232, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15233, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15234, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15235, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15236, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15237, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15238, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15239, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15240, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15241, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15242, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15243, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -123953,8 +127327,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -123964,8 +127338,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -123975,8 +127349,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -123986,8 +127360,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -123997,8 +127371,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -124008,8 +127382,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -124019,8 +127393,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -124030,8 +127404,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -124041,8 +127415,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -124052,8 +127426,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -124063,8 +127437,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -124074,8 +127448,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -124085,8 +127459,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -124096,8 +127470,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -124107,14 +127481,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15277, "properties": { "east": "tall", "north": "low", @@ -124125,7 +127697,7 @@ } }, { - "id": 15260, + "id": 15278, "properties": { "east": "tall", "north": "low", @@ -124135,211 +127707,13 @@ "west": "tall" } }, - { - "id": 15261, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15262, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15263, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15264, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15265, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15266, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15267, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15268, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15269, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15270, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15271, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15272, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15273, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15274, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15275, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15276, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15277, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15278, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15279, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -124349,8 +127723,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -124360,8 +127734,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -124371,8 +127745,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -124382,8 +127756,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -124393,8 +127767,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -124404,8 +127778,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -124415,8 +127789,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -124426,8 +127800,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -124437,8 +127811,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -124448,8 +127822,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -124459,14 +127833,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 15291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15309, "properties": { "east": "tall", "north": "tall", @@ -124477,7 +128049,7 @@ } }, { - "id": 15292, + "id": 15310, "properties": { "east": "tall", "north": "tall", @@ -124488,7 +128060,7 @@ } }, { - "id": 15293, + "id": 15311, "properties": { "east": "tall", "north": "tall", @@ -124499,7 +128071,7 @@ } }, { - "id": 15294, + "id": 15312, "properties": { "east": "tall", "north": "tall", @@ -124510,7 +128082,7 @@ } }, { - "id": 15295, + "id": 15313, "properties": { "east": "tall", "north": "tall", @@ -124521,7 +128093,7 @@ } }, { - "id": 15296, + "id": 15314, "properties": { "east": "tall", "north": "tall", @@ -124537,7 +128109,7 @@ "states": [ { "default": true, - "id": 6535 + "id": 6539 } ] }, @@ -124559,84 +128131,84 @@ "states": [ { "default": true, - "id": 2059, - "properties": { - "type": "normal", - "facing": "north" - } - }, - { - "id": 2060, - "properties": { - "type": "sticky", - "facing": "north" - } - }, - { - "id": 2061, - "properties": { - "type": "normal", - "facing": "east" - } - }, - { - "id": 2062, - "properties": { - "type": "sticky", - "facing": "east" - } - }, - { "id": 2063, "properties": { "type": "normal", - "facing": "south" + "facing": "north" } }, { "id": 2064, "properties": { "type": "sticky", - "facing": "south" + "facing": "north" } }, { "id": 2065, "properties": { "type": "normal", - "facing": "west" + "facing": "east" } }, { "id": 2066, "properties": { "type": "sticky", - "facing": "west" + "facing": "east" } }, { "id": 2067, "properties": { "type": "normal", - "facing": "up" + "facing": "south" } }, { "id": 2068, "properties": { "type": "sticky", - "facing": "up" + "facing": "south" } }, { "id": 2069, "properties": { "type": "normal", - "facing": "down" + "facing": "west" } }, { "id": 2070, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 2071, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 2072, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 2073, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 2074, "properties": { "type": "sticky", "facing": "down" @@ -124648,7 +128220,7 @@ "states": [ { "default": true, - "id": 22046 + "id": 22448 } ] }, @@ -124666,21 +128238,21 @@ }, "states": [ { - "id": 11125, + "id": 11129, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11126, + "id": 11130, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11127, + "id": 11131, "properties": { "type": "bottom", "waterlogged": "true" @@ -124688,21 +128260,21 @@ }, { "default": true, - "id": 11128, + "id": 11132, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11129, + "id": 11133, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11130, + "id": 11134, "properties": { "type": "double", "waterlogged": "false" @@ -124735,48 +128307,12 @@ ] }, "states": [ - { - "id": 7185, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7186, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7187, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7188, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 7189, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -124785,7 +128321,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -124794,7 +128330,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -124803,7 +128339,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -124812,7 +128348,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -124821,12 +128357,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7195, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7196, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7197, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7198, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7199, "properties": { "facing": "north", "half": "bottom", @@ -124836,47 +128408,11 @@ }, { "default": true, - "id": 7196, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7197, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7198, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7199, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 7200, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -124885,7 +128421,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -124894,7 +128430,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -124903,7 +128439,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -124912,43 +128448,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7205, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7206, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7207, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7208, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -124957,7 +128493,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -124966,7 +128502,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -124975,7 +128511,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -124984,7 +128520,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -124993,7 +128529,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -125002,7 +128538,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -125010,8 +128546,8 @@ "id": 7215, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -125019,8 +128555,8 @@ "id": 7216, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -125028,8 +128564,8 @@ "id": 7217, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -125037,8 +128573,8 @@ "id": 7218, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -125047,7 +128583,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -125056,7 +128592,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -125065,7 +128601,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -125074,7 +128610,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -125083,7 +128619,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -125092,43 +128628,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7225, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7226, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7227, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7228, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -125137,7 +128673,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -125146,7 +128682,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -125155,7 +128691,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -125164,7 +128700,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -125173,7 +128709,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -125182,7 +128718,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -125190,8 +128726,8 @@ "id": 7235, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -125199,8 +128735,8 @@ "id": 7236, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -125208,8 +128744,8 @@ "id": 7237, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -125217,8 +128753,8 @@ "id": 7238, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -125227,7 +128763,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -125236,7 +128772,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -125245,7 +128781,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -125254,7 +128790,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -125263,7 +128799,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -125272,43 +128808,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7245, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7246, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7247, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7248, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -125317,7 +128853,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -125326,7 +128862,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -125335,7 +128871,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -125344,7 +128880,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -125353,7 +128889,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -125362,7 +128898,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -125370,8 +128906,8 @@ "id": 7255, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -125379,8 +128915,8 @@ "id": 7256, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -125388,8 +128924,8 @@ "id": 7257, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -125397,8 +128933,8 @@ "id": 7258, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -125407,7 +128943,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -125416,7 +128952,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -125425,7 +128961,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -125434,7 +128970,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -125443,12 +128979,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 7264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7268, "properties": { "facing": "east", "half": "bottom", @@ -125491,7 +129063,7 @@ }, "states": [ { - "id": 15945, + "id": 15963, "properties": { "east": "none", "north": "none", @@ -125502,7 +129074,7 @@ } }, { - "id": 15946, + "id": 15964, "properties": { "east": "none", "north": "none", @@ -125513,7 +129085,7 @@ } }, { - "id": 15947, + "id": 15965, "properties": { "east": "none", "north": "none", @@ -125525,210 +129097,12 @@ }, { "default": true, - "id": 15948, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15949, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15950, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15951, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15952, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15953, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15954, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15955, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15956, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15957, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15958, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15959, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15960, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15961, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15962, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15963, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15964, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15965, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 15966, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -125738,8 +129112,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -125749,8 +129123,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -125760,8 +129134,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -125771,8 +129145,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -125782,8 +129156,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -125793,8 +129167,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -125804,8 +129178,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -125815,8 +129189,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -125826,8 +129200,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -125837,8 +129211,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -125848,8 +129222,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -125859,8 +129233,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -125870,8 +129244,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -125881,8 +129255,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -125891,9 +129265,9 @@ "id": 15981, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -125902,9 +129276,9 @@ "id": 15982, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -125913,9 +129287,9 @@ "id": 15983, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -125924,9 +129298,9 @@ "id": 15984, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -125935,9 +129309,9 @@ "id": 15985, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -125946,9 +129320,9 @@ "id": 15986, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -125957,9 +129331,9 @@ "id": 15987, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -125968,9 +129342,9 @@ "id": 15988, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -125979,9 +129353,9 @@ "id": 15989, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -125990,9 +129364,9 @@ "id": 15990, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126001,9 +129375,9 @@ "id": 15991, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126012,9 +129386,9 @@ "id": 15992, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126023,9 +129397,9 @@ "id": 15993, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126034,9 +129408,9 @@ "id": 15994, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126045,9 +129419,9 @@ "id": 15995, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126056,9 +129430,9 @@ "id": 15996, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126067,9 +129441,9 @@ "id": 15997, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -126078,9 +129452,9 @@ "id": 15998, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -126090,8 +129464,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126101,8 +129475,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126112,8 +129486,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126123,8 +129497,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126134,8 +129508,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126145,8 +129519,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126156,8 +129530,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126167,8 +129541,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126178,8 +129552,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126189,8 +129563,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126200,8 +129574,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -126211,8 +129585,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -126222,8 +129596,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126233,8 +129607,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126244,8 +129618,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126255,8 +129629,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126266,8 +129640,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126277,8 +129651,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126287,9 +129661,9 @@ "id": 16017, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126298,9 +129672,9 @@ "id": 16018, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126309,9 +129683,9 @@ "id": 16019, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126320,9 +129694,9 @@ "id": 16020, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126331,9 +129705,9 @@ "id": 16021, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -126342,9 +129716,9 @@ "id": 16022, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -126353,9 +129727,9 @@ "id": 16023, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126364,9 +129738,9 @@ "id": 16024, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126375,9 +129749,9 @@ "id": 16025, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126386,9 +129760,9 @@ "id": 16026, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126397,9 +129771,9 @@ "id": 16027, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126408,9 +129782,9 @@ "id": 16028, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126419,9 +129793,9 @@ "id": 16029, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126430,9 +129804,9 @@ "id": 16030, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126441,9 +129815,9 @@ "id": 16031, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126452,9 +129826,9 @@ "id": 16032, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126463,9 +129837,9 @@ "id": 16033, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -126474,9 +129848,9 @@ "id": 16034, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -126486,8 +129860,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126497,8 +129871,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126508,8 +129882,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126519,8 +129893,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126530,8 +129904,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126541,8 +129915,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126552,8 +129926,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126563,8 +129937,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126574,8 +129948,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126585,8 +129959,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126596,8 +129970,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -126607,8 +129981,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -126618,8 +129992,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126629,8 +130003,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126640,8 +130014,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126651,14 +130025,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16051, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16052, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16053, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16054, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16055, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16056, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16057, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16058, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16059, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16060, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16061, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16062, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16063, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16064, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16065, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16066, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16067, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16068, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16069, "properties": { "east": "none", "north": "tall", @@ -126669,7 +130241,7 @@ } }, { - "id": 16052, + "id": 16070, "properties": { "east": "none", "north": "tall", @@ -126679,211 +130251,13 @@ "west": "tall" } }, - { - "id": 16053, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16054, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16055, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16056, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16057, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16058, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16059, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16060, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16061, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16062, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16063, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16064, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16065, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16066, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16067, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16068, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16069, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16070, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16071, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -126893,8 +130267,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -126904,8 +130278,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -126915,8 +130289,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -126926,8 +130300,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -126937,8 +130311,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -126948,8 +130322,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -126959,8 +130333,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -126970,8 +130344,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -126981,8 +130355,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -126992,8 +130366,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127003,8 +130377,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127014,8 +130388,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127025,8 +130399,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127036,8 +130410,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127047,8 +130421,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127058,8 +130432,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127069,8 +130443,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127079,9 +130453,9 @@ "id": 16089, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127090,9 +130464,9 @@ "id": 16090, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127101,9 +130475,9 @@ "id": 16091, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127112,9 +130486,9 @@ "id": 16092, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127123,9 +130497,9 @@ "id": 16093, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127134,9 +130508,9 @@ "id": 16094, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127145,9 +130519,9 @@ "id": 16095, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127156,9 +130530,9 @@ "id": 16096, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127167,9 +130541,9 @@ "id": 16097, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127178,9 +130552,9 @@ "id": 16098, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127189,9 +130563,9 @@ "id": 16099, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127200,9 +130574,9 @@ "id": 16100, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127211,9 +130585,9 @@ "id": 16101, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127222,9 +130596,9 @@ "id": 16102, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127233,9 +130607,9 @@ "id": 16103, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127244,9 +130618,9 @@ "id": 16104, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127255,9 +130629,9 @@ "id": 16105, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127266,9 +130640,9 @@ "id": 16106, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127278,8 +130652,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127289,8 +130663,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127300,8 +130674,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127311,8 +130685,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127322,8 +130696,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127333,8 +130707,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127344,8 +130718,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127355,8 +130729,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127366,8 +130740,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127377,8 +130751,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127388,8 +130762,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127399,8 +130773,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127410,8 +130784,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127421,8 +130795,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127432,8 +130806,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127443,8 +130817,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127454,8 +130828,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127465,8 +130839,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127475,9 +130849,9 @@ "id": 16125, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127486,9 +130860,9 @@ "id": 16126, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127497,9 +130871,9 @@ "id": 16127, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127508,9 +130882,9 @@ "id": 16128, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127519,9 +130893,9 @@ "id": 16129, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127530,9 +130904,9 @@ "id": 16130, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127541,9 +130915,9 @@ "id": 16131, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127552,9 +130926,9 @@ "id": 16132, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127563,9 +130937,9 @@ "id": 16133, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127574,9 +130948,9 @@ "id": 16134, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127585,9 +130959,9 @@ "id": 16135, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127596,9 +130970,9 @@ "id": 16136, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127607,9 +130981,9 @@ "id": 16137, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127618,9 +130992,9 @@ "id": 16138, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127629,9 +131003,9 @@ "id": 16139, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127640,9 +131014,9 @@ "id": 16140, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127651,9 +131025,9 @@ "id": 16141, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127662,9 +131036,9 @@ "id": 16142, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127674,8 +131048,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127685,8 +131059,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127696,8 +131070,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127707,8 +131081,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -127718,8 +131092,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -127729,8 +131103,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -127740,8 +131114,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -127751,8 +131125,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -127762,8 +131136,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -127773,8 +131147,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -127784,8 +131158,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -127795,8 +131169,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -127806,8 +131180,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -127817,8 +131191,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -127828,8 +131202,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -127839,14 +131213,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16159, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16160, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16161, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16162, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16163, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16164, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16165, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16166, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16167, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16168, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16169, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16170, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16171, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16172, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16173, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16174, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16175, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16176, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16177, "properties": { "east": "low", "north": "tall", @@ -127857,7 +131429,7 @@ } }, { - "id": 16160, + "id": 16178, "properties": { "east": "low", "north": "tall", @@ -127867,211 +131439,13 @@ "west": "tall" } }, - { - "id": 16161, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16162, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16163, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16164, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16165, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16166, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16167, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16168, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16169, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16170, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16171, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16172, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16173, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16174, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16175, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16176, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16177, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16178, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16179, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -128081,8 +131455,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -128092,8 +131466,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -128103,8 +131477,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -128114,8 +131488,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -128125,8 +131499,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -128136,8 +131510,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -128147,8 +131521,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -128158,8 +131532,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -128169,8 +131543,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -128180,8 +131554,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -128191,8 +131565,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -128202,8 +131576,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -128213,8 +131587,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -128224,8 +131598,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -128235,14 +131609,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16195, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16196, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16197, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16198, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16199, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16200, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16201, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16202, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16203, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16204, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16205, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16206, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16207, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16208, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16209, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16210, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16211, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16212, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16213, "properties": { "east": "tall", "north": "none", @@ -128253,7 +131825,7 @@ } }, { - "id": 16196, + "id": 16214, "properties": { "east": "tall", "north": "none", @@ -128263,211 +131835,13 @@ "west": "tall" } }, - { - "id": 16197, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16198, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16199, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16200, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16201, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16202, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16203, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16204, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16205, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16206, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16207, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16208, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16209, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16210, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16211, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16212, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16213, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16214, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16215, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -128477,8 +131851,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -128488,8 +131862,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -128499,8 +131873,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -128510,8 +131884,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -128521,8 +131895,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -128532,8 +131906,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -128543,8 +131917,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -128554,8 +131928,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -128565,8 +131939,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -128576,8 +131950,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -128587,8 +131961,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -128598,8 +131972,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -128609,8 +131983,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -128620,8 +131994,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -128631,14 +132005,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16231, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16232, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16233, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16234, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16235, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16236, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16237, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16238, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16239, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16240, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16241, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16242, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16243, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16244, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16245, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16246, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16247, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16248, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16249, "properties": { "east": "tall", "north": "low", @@ -128649,7 +132221,7 @@ } }, { - "id": 16232, + "id": 16250, "properties": { "east": "tall", "north": "low", @@ -128659,211 +132231,13 @@ "west": "tall" } }, - { - "id": 16233, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16234, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16235, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16236, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16237, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16238, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16239, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16240, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16241, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16242, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16243, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16244, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16245, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16246, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16247, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16248, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16249, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16250, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16251, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -128873,8 +132247,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -128884,8 +132258,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -128895,8 +132269,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -128906,8 +132280,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -128917,8 +132291,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -128928,8 +132302,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -128939,8 +132313,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -128950,8 +132324,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -128961,8 +132335,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -128972,8 +132346,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -128983,14 +132357,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 16263, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16264, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16265, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16266, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16267, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16268, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16269, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16270, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16271, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16272, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16273, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16274, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16275, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16276, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16277, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16278, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16279, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16280, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16281, "properties": { "east": "tall", "north": "tall", @@ -129001,7 +132573,7 @@ } }, { - "id": 16264, + "id": 16282, "properties": { "east": "tall", "north": "tall", @@ -129012,7 +132584,7 @@ } }, { - "id": 16265, + "id": 16283, "properties": { "east": "tall", "north": "tall", @@ -129023,7 +132595,7 @@ } }, { - "id": 16266, + "id": 16284, "properties": { "east": "tall", "north": "tall", @@ -129034,7 +132606,7 @@ } }, { - "id": 16267, + "id": 16285, "properties": { "east": "tall", "north": "tall", @@ -129045,7 +132617,7 @@ } }, { - "id": 16268, + "id": 16286, "properties": { "east": "tall", "north": "tall", @@ -129061,7 +132633,7 @@ "states": [ { "default": true, - "id": 6539 + "id": 6543 } ] }, @@ -129075,20 +132647,20 @@ }, "states": [ { - "id": 152, + "id": 156, "properties": { "axis": "x" } }, { "default": true, - "id": 153, + "id": 157, "properties": { "axis": "y" } }, { - "id": 154, + "id": 158, "properties": { "axis": "z" } @@ -129125,56 +132697,12 @@ "states": [ { "default": true, - "id": 6674, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6675, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6676, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6677, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { "id": 6678, "properties": { "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129185,7 +132713,7 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129196,7 +132724,7 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129207,7 +132735,7 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129217,8 +132745,8 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -129228,8 +132756,8 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -129239,8 +132767,8 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -129250,8 +132778,8 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -129262,7 +132790,7 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129273,7 +132801,7 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129284,7 +132812,7 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129295,7 +132823,7 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129304,9 +132832,9 @@ "id": 6690, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "true" } @@ -129315,9 +132843,9 @@ "id": 6691, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "false" } @@ -129326,9 +132854,9 @@ "id": 6692, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "true" } @@ -129337,9 +132865,9 @@ "id": 6693, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "false" } @@ -129350,7 +132878,7 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129361,7 +132889,7 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129372,7 +132900,7 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129383,7 +132911,7 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129393,8 +132921,8 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -129404,8 +132932,8 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -129415,8 +132943,8 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -129426,8 +132954,8 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -129438,7 +132966,7 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129449,7 +132977,7 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129460,7 +132988,7 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129471,7 +132999,7 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129479,10 +133007,10 @@ { "id": 6706, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "true" } @@ -129490,10 +133018,10 @@ { "id": 6707, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } @@ -129501,10 +133029,10 @@ { "id": 6708, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } @@ -129512,10 +133040,10 @@ { "id": 6709, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "false" } @@ -129526,7 +133054,7 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129537,7 +133065,7 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129548,7 +133076,7 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129559,7 +133087,7 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129569,8 +133097,8 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -129580,8 +133108,8 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -129591,8 +133119,8 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -129602,8 +133130,8 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -129614,7 +133142,7 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129625,7 +133153,7 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129636,7 +133164,7 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129647,7 +133175,7 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129656,9 +133184,9 @@ "id": 6722, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "true" } @@ -129667,9 +133195,9 @@ "id": 6723, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "false" } @@ -129678,9 +133206,9 @@ "id": 6724, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "true" } @@ -129689,9 +133217,9 @@ "id": 6725, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "false" } @@ -129702,7 +133230,7 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129713,7 +133241,7 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129724,7 +133252,7 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -129735,7 +133263,7 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -129745,8 +133273,8 @@ "properties": { "down": "false", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -129756,8 +133284,8 @@ "properties": { "down": "false", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -129767,8 +133295,8 @@ "properties": { "down": "false", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -129778,8 +133306,8 @@ "properties": { "down": "false", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -129790,7 +133318,7 @@ "down": "false", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -129801,7 +133329,7 @@ "down": "false", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -129812,13 +133340,57 @@ "down": "false", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "true" } }, { "id": 6737, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6738, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6739, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6740, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6741, "properties": { "down": "false", "east": "false", @@ -129839,14 +133411,14 @@ }, "states": [ { - "id": 7265, + "id": 7269, "properties": { "snowy": "true" } }, { "default": true, - "id": 7266, + "id": 7270, "properties": { "snowy": "false" } @@ -129877,52 +133449,12 @@ ] }, "states": [ - { - "id": 7269, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7270, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7271, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7272, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 7273, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -129932,7 +133464,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -129942,7 +133474,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -129952,7 +133484,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -129961,8 +133493,8 @@ "id": 7277, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -129971,8 +133503,8 @@ "id": 7278, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -129981,8 +133513,8 @@ "id": 7279, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -129991,8 +133523,8 @@ "id": 7280, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -130002,7 +133534,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -130012,7 +133544,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -130022,7 +133554,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -130032,7 +133564,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -130040,9 +133572,9 @@ { "id": 7285, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -130050,9 +133582,9 @@ { "id": 7286, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -130060,9 +133592,9 @@ { "id": 7287, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -130070,9 +133602,9 @@ { "id": 7288, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -130082,7 +133614,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -130092,7 +133624,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -130102,7 +133634,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -130112,7 +133644,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -130121,8 +133653,8 @@ "id": 7293, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -130131,8 +133663,8 @@ "id": 7294, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -130141,8 +133673,8 @@ "id": 7295, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -130151,8 +133683,8 @@ "id": 7296, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -130162,7 +133694,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -130172,13 +133704,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 7299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7300, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7301, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7302, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7303, "properties": { "east": "false", "north": "false", @@ -130189,7 +133761,7 @@ }, { "default": true, - "id": 7300, + "id": 7304, "properties": { "east": "false", "north": "false", @@ -130214,21 +133786,21 @@ }, "states": [ { - "id": 11131, + "id": 11135, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11132, + "id": 11136, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11133, + "id": 11137, "properties": { "type": "bottom", "waterlogged": "true" @@ -130236,21 +133808,21 @@ }, { "default": true, - "id": 11134, + "id": 11138, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11135, + "id": 11139, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11136, + "id": 11140, "properties": { "type": "double", "waterlogged": "false" @@ -130283,48 +133855,12 @@ ] }, "states": [ - { - "id": 7301, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7302, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7303, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7304, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 7305, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130333,7 +133869,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130342,7 +133878,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130351,7 +133887,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130360,7 +133896,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130369,12 +133905,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7311, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7315, "properties": { "facing": "north", "half": "bottom", @@ -130384,47 +133956,11 @@ }, { "default": true, - "id": 7312, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7313, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7314, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7315, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 7316, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130433,7 +133969,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130442,7 +133978,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130451,7 +133987,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130460,43 +133996,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7321, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7322, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7323, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7324, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130505,7 +134041,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130514,7 +134050,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130523,7 +134059,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130532,7 +134068,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130541,7 +134077,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130550,7 +134086,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -130558,8 +134094,8 @@ "id": 7331, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -130567,8 +134103,8 @@ "id": 7332, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -130576,8 +134112,8 @@ "id": 7333, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -130585,8 +134121,8 @@ "id": 7334, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130595,7 +134131,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130604,7 +134140,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130613,7 +134149,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130622,7 +134158,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130631,7 +134167,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130640,43 +134176,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7341, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7342, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7343, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7344, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130685,7 +134221,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130694,7 +134230,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130703,7 +134239,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130712,7 +134248,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130721,7 +134257,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130730,7 +134266,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -130738,8 +134274,8 @@ "id": 7351, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -130747,8 +134283,8 @@ "id": 7352, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -130756,8 +134292,8 @@ "id": 7353, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -130765,8 +134301,8 @@ "id": 7354, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130775,7 +134311,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130784,7 +134320,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130793,7 +134329,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130802,7 +134338,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130811,7 +134347,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130820,43 +134356,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7361, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7362, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7363, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7364, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130865,7 +134401,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130874,7 +134410,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130883,7 +134419,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130892,7 +134428,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130901,7 +134437,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -130910,7 +134446,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -130918,8 +134454,8 @@ "id": 7371, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -130927,8 +134463,8 @@ "id": 7372, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -130936,8 +134472,8 @@ "id": 7373, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -130945,8 +134481,8 @@ "id": 7374, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -130955,7 +134491,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -130964,7 +134500,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -130973,7 +134509,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -130982,7 +134518,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -130991,12 +134527,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 7380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7384, "properties": { "facing": "east", "half": "bottom", @@ -131039,7 +134611,7 @@ }, "states": [ { - "id": 16269, + "id": 16287, "properties": { "east": "none", "north": "none", @@ -131050,7 +134622,7 @@ } }, { - "id": 16270, + "id": 16288, "properties": { "east": "none", "north": "none", @@ -131061,7 +134633,7 @@ } }, { - "id": 16271, + "id": 16289, "properties": { "east": "none", "north": "none", @@ -131073,210 +134645,12 @@ }, { "default": true, - "id": 16272, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16273, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16274, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16275, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16276, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16277, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16278, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16279, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16280, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16281, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16282, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16283, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16284, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16285, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16286, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16287, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16288, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16289, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 16290, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131286,8 +134660,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131297,8 +134671,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131308,8 +134682,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131319,8 +134693,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131330,8 +134704,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -131341,8 +134715,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -131352,8 +134726,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -131363,8 +134737,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -131374,8 +134748,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -131385,8 +134759,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -131396,8 +134770,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -131407,8 +134781,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131418,8 +134792,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131429,8 +134803,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131439,9 +134813,9 @@ "id": 16305, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131450,9 +134824,9 @@ "id": 16306, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131461,9 +134835,9 @@ "id": 16307, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -131472,9 +134846,9 @@ "id": 16308, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -131483,9 +134857,9 @@ "id": 16309, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -131494,9 +134868,9 @@ "id": 16310, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -131505,9 +134879,9 @@ "id": 16311, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -131516,9 +134890,9 @@ "id": 16312, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -131527,9 +134901,9 @@ "id": 16313, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -131538,9 +134912,9 @@ "id": 16314, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131549,9 +134923,9 @@ "id": 16315, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131560,9 +134934,9 @@ "id": 16316, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131571,9 +134945,9 @@ "id": 16317, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131582,9 +134956,9 @@ "id": 16318, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131593,9 +134967,9 @@ "id": 16319, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -131604,9 +134978,9 @@ "id": 16320, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -131615,9 +134989,9 @@ "id": 16321, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -131626,9 +135000,9 @@ "id": 16322, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -131638,8 +135012,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -131649,8 +135023,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -131660,8 +135034,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -131671,8 +135045,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131682,8 +135056,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131693,8 +135067,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131704,8 +135078,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131715,8 +135089,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131726,8 +135100,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -131737,8 +135111,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -131748,8 +135122,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -131759,8 +135133,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -131770,8 +135144,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -131781,8 +135155,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -131792,8 +135166,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -131803,8 +135177,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131814,8 +135188,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131825,8 +135199,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131835,9 +135209,9 @@ "id": 16341, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131846,9 +135220,9 @@ "id": 16342, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131857,9 +135231,9 @@ "id": 16343, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -131868,9 +135242,9 @@ "id": 16344, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -131879,9 +135253,9 @@ "id": 16345, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -131890,9 +135264,9 @@ "id": 16346, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -131901,9 +135275,9 @@ "id": 16347, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -131912,9 +135286,9 @@ "id": 16348, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -131923,9 +135297,9 @@ "id": 16349, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -131934,9 +135308,9 @@ "id": 16350, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -131945,9 +135319,9 @@ "id": 16351, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -131956,9 +135330,9 @@ "id": 16352, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -131967,9 +135341,9 @@ "id": 16353, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -131978,9 +135352,9 @@ "id": 16354, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -131989,9 +135363,9 @@ "id": 16355, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132000,9 +135374,9 @@ "id": 16356, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132011,9 +135385,9 @@ "id": 16357, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132022,9 +135396,9 @@ "id": 16358, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132034,8 +135408,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132045,8 +135419,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132056,8 +135430,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132067,8 +135441,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -132078,8 +135452,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -132089,8 +135463,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -132100,8 +135474,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -132111,8 +135485,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -132122,8 +135496,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132133,8 +135507,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132144,8 +135518,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132155,8 +135529,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132166,8 +135540,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132177,8 +135551,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132188,8 +135562,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132199,14 +135573,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16375, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16376, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16377, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16378, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16379, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16380, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16381, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16382, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16383, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16384, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16385, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16386, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16387, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16388, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16389, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16390, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16391, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16392, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16393, "properties": { "east": "none", "north": "tall", @@ -132217,7 +135789,7 @@ } }, { - "id": 16376, + "id": 16394, "properties": { "east": "none", "north": "tall", @@ -132227,211 +135799,13 @@ "west": "tall" } }, - { - "id": 16377, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16378, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16379, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16380, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16381, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16382, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16383, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16384, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16385, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16386, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16387, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16388, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16389, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16390, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16391, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16392, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16393, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16394, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16395, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132441,8 +135815,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132452,8 +135826,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132463,8 +135837,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -132474,8 +135848,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -132485,8 +135859,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -132496,8 +135870,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -132507,8 +135881,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -132518,8 +135892,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132529,8 +135903,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132540,8 +135914,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132551,8 +135925,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132562,8 +135936,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132573,8 +135947,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132584,8 +135958,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132595,8 +135969,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -132606,8 +135980,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -132617,8 +135991,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -132627,9 +136001,9 @@ "id": 16413, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -132638,9 +136012,9 @@ "id": 16414, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -132649,9 +136023,9 @@ "id": 16415, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132660,9 +136034,9 @@ "id": 16416, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132671,9 +136045,9 @@ "id": 16417, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132682,9 +136056,9 @@ "id": 16418, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132693,9 +136067,9 @@ "id": 16419, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132704,9 +136078,9 @@ "id": 16420, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132715,9 +136089,9 @@ "id": 16421, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132726,9 +136100,9 @@ "id": 16422, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -132737,9 +136111,9 @@ "id": 16423, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -132748,9 +136122,9 @@ "id": 16424, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -132759,9 +136133,9 @@ "id": 16425, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -132770,9 +136144,9 @@ "id": 16426, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -132781,9 +136155,9 @@ "id": 16427, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132792,9 +136166,9 @@ "id": 16428, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132803,9 +136177,9 @@ "id": 16429, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132814,9 +136188,9 @@ "id": 16430, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132826,8 +136200,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132837,8 +136211,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132848,8 +136222,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132859,8 +136233,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -132870,8 +136244,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -132881,8 +136255,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -132892,8 +136266,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -132903,8 +136277,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -132914,8 +136288,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -132925,8 +136299,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -132936,8 +136310,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -132947,8 +136321,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -132958,8 +136332,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -132969,8 +136343,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -132980,8 +136354,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -132991,8 +136365,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -133002,8 +136376,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -133013,8 +136387,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -133023,9 +136397,9 @@ "id": 16449, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -133034,9 +136408,9 @@ "id": 16450, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -133045,9 +136419,9 @@ "id": 16451, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -133056,9 +136430,9 @@ "id": 16452, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -133067,9 +136441,9 @@ "id": 16453, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -133078,9 +136452,9 @@ "id": 16454, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -133089,9 +136463,9 @@ "id": 16455, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -133100,9 +136474,9 @@ "id": 16456, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -133111,9 +136485,9 @@ "id": 16457, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -133122,9 +136496,9 @@ "id": 16458, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -133133,9 +136507,9 @@ "id": 16459, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -133144,9 +136518,9 @@ "id": 16460, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -133155,9 +136529,9 @@ "id": 16461, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -133166,9 +136540,9 @@ "id": 16462, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -133177,9 +136551,9 @@ "id": 16463, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -133188,9 +136562,9 @@ "id": 16464, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -133199,9 +136573,9 @@ "id": 16465, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -133210,9 +136584,9 @@ "id": 16466, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -133222,8 +136596,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -133233,8 +136607,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -133244,8 +136618,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -133255,8 +136629,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -133266,8 +136640,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -133277,8 +136651,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -133288,8 +136662,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -133299,8 +136673,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -133310,8 +136684,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -133321,8 +136695,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -133332,8 +136706,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -133343,8 +136717,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -133354,8 +136728,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -133365,8 +136739,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -133376,8 +136750,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -133387,14 +136761,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16483, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16484, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16485, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16486, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16487, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16488, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16489, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16490, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16491, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16492, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16493, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16494, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16495, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16496, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16497, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16498, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16499, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16500, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16501, "properties": { "east": "low", "north": "tall", @@ -133405,7 +136977,7 @@ } }, { - "id": 16484, + "id": 16502, "properties": { "east": "low", "north": "tall", @@ -133415,211 +136987,13 @@ "west": "tall" } }, - { - "id": 16485, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16486, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16487, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16488, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16489, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16490, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16491, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16492, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16493, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16494, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16495, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16496, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16497, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16498, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16499, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16500, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16501, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16502, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16503, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -133629,8 +137003,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -133640,8 +137014,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -133651,8 +137025,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -133662,8 +137036,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -133673,8 +137047,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -133684,8 +137058,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -133695,8 +137069,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -133706,8 +137080,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -133717,8 +137091,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -133728,8 +137102,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -133739,8 +137113,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -133750,8 +137124,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -133761,8 +137135,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -133772,8 +137146,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -133783,14 +137157,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16519, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16520, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16521, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16522, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16523, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16524, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16525, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16526, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16527, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16528, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16529, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16530, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16531, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16532, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16533, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16534, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16535, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16536, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16537, "properties": { "east": "tall", "north": "none", @@ -133801,7 +137373,7 @@ } }, { - "id": 16520, + "id": 16538, "properties": { "east": "tall", "north": "none", @@ -133811,211 +137383,13 @@ "west": "tall" } }, - { - "id": 16521, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16522, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16523, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16524, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16525, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16526, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16527, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16528, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16529, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16530, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16531, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16532, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16533, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16534, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16535, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16536, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16537, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16538, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16539, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -134025,8 +137399,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -134036,8 +137410,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -134047,8 +137421,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -134058,8 +137432,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -134069,8 +137443,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -134080,8 +137454,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -134091,8 +137465,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -134102,8 +137476,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -134113,8 +137487,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -134124,8 +137498,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -134135,8 +137509,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -134146,8 +137520,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -134157,8 +137531,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -134168,8 +137542,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -134179,14 +137553,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 16555, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16556, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16557, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16558, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16559, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16560, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16561, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16562, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16563, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16564, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16565, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16566, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16567, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16568, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16569, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16570, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16571, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16572, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16573, "properties": { "east": "tall", "north": "low", @@ -134197,7 +137769,7 @@ } }, { - "id": 16556, + "id": 16574, "properties": { "east": "tall", "north": "low", @@ -134207,211 +137779,13 @@ "west": "tall" } }, - { - "id": 16557, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16558, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16559, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16560, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16561, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16562, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16563, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16564, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16565, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16566, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16567, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16568, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16569, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16570, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16571, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16572, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16573, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16574, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 16575, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -134421,8 +137795,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -134432,8 +137806,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -134443,8 +137817,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -134454,8 +137828,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -134465,8 +137839,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -134476,8 +137850,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -134487,8 +137861,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -134498,8 +137872,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -134509,8 +137883,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -134520,8 +137894,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -134531,14 +137905,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 16587, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16588, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16589, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16590, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16591, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16592, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16593, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16594, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16595, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16596, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16597, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16598, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16599, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16600, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16601, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16602, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16603, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16604, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16605, "properties": { "east": "tall", "north": "tall", @@ -134549,7 +138121,7 @@ } }, { - "id": 16588, + "id": 16606, "properties": { "east": "tall", "north": "tall", @@ -134560,7 +138132,7 @@ } }, { - "id": 16589, + "id": 16607, "properties": { "east": "tall", "north": "tall", @@ -134571,7 +138143,7 @@ } }, { - "id": 16590, + "id": 16608, "properties": { "east": "tall", "north": "tall", @@ -134582,7 +138154,7 @@ } }, { - "id": 16591, + "id": 16609, "properties": { "east": "tall", "north": "tall", @@ -134593,7 +138165,7 @@ } }, { - "id": 16592, + "id": 16610, "properties": { "east": "tall", "north": "tall", @@ -134609,7 +138181,7 @@ "states": [ { "default": true, - "id": 7268 + "id": 7272 } ] }, @@ -134617,7 +138189,7 @@ "states": [ { "default": true, - "id": 125 + "id": 129 } ] }, @@ -134631,13 +138203,13 @@ "states": [ { "default": true, - "id": 5861, + "id": 5865, "properties": { "axis": "x" } }, { - "id": 5862, + "id": 5866, "properties": { "axis": "z" } @@ -134648,7 +138220,7 @@ "states": [ { "default": true, - "id": 9080 + "id": 9084 } ] }, @@ -134656,7 +138228,7 @@ "states": [ { "default": true, - "id": 18436 + "id": 18454 } ] }, @@ -134672,25 +138244,25 @@ "states": [ { "default": true, - "id": 7381, + "id": 7385, "properties": { "age": "0" } }, { - "id": 7382, + "id": 7386, "properties": { "age": "1" } }, { - "id": 7383, + "id": 7387, "properties": { "age": "2" } }, { - "id": 7384, + "id": 7388, "properties": { "age": "3" } @@ -134701,7 +138273,7 @@ "states": [ { "default": true, - "id": 12388 + "id": 12403 } ] }, @@ -134709,7 +138281,7 @@ "states": [ { "default": true, - "id": 19288 + "id": 19306 } ] }, @@ -134717,7 +138289,7 @@ "states": [ { "default": true, - "id": 5846 + "id": 5850 } ] }, @@ -134782,7 +138354,7 @@ }, "states": [ { - "id": 534, + "id": 538, "properties": { "instrument": "harp", "note": "0", @@ -134791,42 +138363,10 @@ }, { "default": true, - "id": 535, - "properties": { - "instrument": "harp", - "note": "0", - "powered": "false" - } - }, - { - "id": 536, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "true" - } - }, - { - "id": 537, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "false" - } - }, - { - "id": 538, - "properties": { - "instrument": "harp", - "note": "2", - "powered": "true" - } - }, - { "id": 539, "properties": { "instrument": "harp", - "note": "2", + "note": "0", "powered": "false" } }, @@ -134834,7 +138374,7 @@ "id": 540, "properties": { "instrument": "harp", - "note": "3", + "note": "1", "powered": "true" } }, @@ -134842,7 +138382,7 @@ "id": 541, "properties": { "instrument": "harp", - "note": "3", + "note": "1", "powered": "false" } }, @@ -134850,7 +138390,7 @@ "id": 542, "properties": { "instrument": "harp", - "note": "4", + "note": "2", "powered": "true" } }, @@ -134858,7 +138398,7 @@ "id": 543, "properties": { "instrument": "harp", - "note": "4", + "note": "2", "powered": "false" } }, @@ -134866,7 +138406,7 @@ "id": 544, "properties": { "instrument": "harp", - "note": "5", + "note": "3", "powered": "true" } }, @@ -134874,7 +138414,7 @@ "id": 545, "properties": { "instrument": "harp", - "note": "5", + "note": "3", "powered": "false" } }, @@ -134882,7 +138422,7 @@ "id": 546, "properties": { "instrument": "harp", - "note": "6", + "note": "4", "powered": "true" } }, @@ -134890,7 +138430,7 @@ "id": 547, "properties": { "instrument": "harp", - "note": "6", + "note": "4", "powered": "false" } }, @@ -134898,7 +138438,7 @@ "id": 548, "properties": { "instrument": "harp", - "note": "7", + "note": "5", "powered": "true" } }, @@ -134906,7 +138446,7 @@ "id": 549, "properties": { "instrument": "harp", - "note": "7", + "note": "5", "powered": "false" } }, @@ -134914,7 +138454,7 @@ "id": 550, "properties": { "instrument": "harp", - "note": "8", + "note": "6", "powered": "true" } }, @@ -134922,7 +138462,7 @@ "id": 551, "properties": { "instrument": "harp", - "note": "8", + "note": "6", "powered": "false" } }, @@ -134930,7 +138470,7 @@ "id": 552, "properties": { "instrument": "harp", - "note": "9", + "note": "7", "powered": "true" } }, @@ -134938,7 +138478,7 @@ "id": 553, "properties": { "instrument": "harp", - "note": "9", + "note": "7", "powered": "false" } }, @@ -134946,7 +138486,7 @@ "id": 554, "properties": { "instrument": "harp", - "note": "10", + "note": "8", "powered": "true" } }, @@ -134954,7 +138494,7 @@ "id": 555, "properties": { "instrument": "harp", - "note": "10", + "note": "8", "powered": "false" } }, @@ -134962,7 +138502,7 @@ "id": 556, "properties": { "instrument": "harp", - "note": "11", + "note": "9", "powered": "true" } }, @@ -134970,7 +138510,7 @@ "id": 557, "properties": { "instrument": "harp", - "note": "11", + "note": "9", "powered": "false" } }, @@ -134978,7 +138518,7 @@ "id": 558, "properties": { "instrument": "harp", - "note": "12", + "note": "10", "powered": "true" } }, @@ -134986,7 +138526,7 @@ "id": 559, "properties": { "instrument": "harp", - "note": "12", + "note": "10", "powered": "false" } }, @@ -134994,7 +138534,7 @@ "id": 560, "properties": { "instrument": "harp", - "note": "13", + "note": "11", "powered": "true" } }, @@ -135002,7 +138542,7 @@ "id": 561, "properties": { "instrument": "harp", - "note": "13", + "note": "11", "powered": "false" } }, @@ -135010,7 +138550,7 @@ "id": 562, "properties": { "instrument": "harp", - "note": "14", + "note": "12", "powered": "true" } }, @@ -135018,7 +138558,7 @@ "id": 563, "properties": { "instrument": "harp", - "note": "14", + "note": "12", "powered": "false" } }, @@ -135026,7 +138566,7 @@ "id": 564, "properties": { "instrument": "harp", - "note": "15", + "note": "13", "powered": "true" } }, @@ -135034,7 +138574,7 @@ "id": 565, "properties": { "instrument": "harp", - "note": "15", + "note": "13", "powered": "false" } }, @@ -135042,7 +138582,7 @@ "id": 566, "properties": { "instrument": "harp", - "note": "16", + "note": "14", "powered": "true" } }, @@ -135050,7 +138590,7 @@ "id": 567, "properties": { "instrument": "harp", - "note": "16", + "note": "14", "powered": "false" } }, @@ -135058,7 +138598,7 @@ "id": 568, "properties": { "instrument": "harp", - "note": "17", + "note": "15", "powered": "true" } }, @@ -135066,7 +138606,7 @@ "id": 569, "properties": { "instrument": "harp", - "note": "17", + "note": "15", "powered": "false" } }, @@ -135074,7 +138614,7 @@ "id": 570, "properties": { "instrument": "harp", - "note": "18", + "note": "16", "powered": "true" } }, @@ -135082,7 +138622,7 @@ "id": 571, "properties": { "instrument": "harp", - "note": "18", + "note": "16", "powered": "false" } }, @@ -135090,7 +138630,7 @@ "id": 572, "properties": { "instrument": "harp", - "note": "19", + "note": "17", "powered": "true" } }, @@ -135098,7 +138638,7 @@ "id": 573, "properties": { "instrument": "harp", - "note": "19", + "note": "17", "powered": "false" } }, @@ -135106,7 +138646,7 @@ "id": 574, "properties": { "instrument": "harp", - "note": "20", + "note": "18", "powered": "true" } }, @@ -135114,7 +138654,7 @@ "id": 575, "properties": { "instrument": "harp", - "note": "20", + "note": "18", "powered": "false" } }, @@ -135122,7 +138662,7 @@ "id": 576, "properties": { "instrument": "harp", - "note": "21", + "note": "19", "powered": "true" } }, @@ -135130,7 +138670,7 @@ "id": 577, "properties": { "instrument": "harp", - "note": "21", + "note": "19", "powered": "false" } }, @@ -135138,7 +138678,7 @@ "id": 578, "properties": { "instrument": "harp", - "note": "22", + "note": "20", "powered": "true" } }, @@ -135146,7 +138686,7 @@ "id": 579, "properties": { "instrument": "harp", - "note": "22", + "note": "20", "powered": "false" } }, @@ -135154,7 +138694,7 @@ "id": 580, "properties": { "instrument": "harp", - "note": "23", + "note": "21", "powered": "true" } }, @@ -135162,7 +138702,7 @@ "id": 581, "properties": { "instrument": "harp", - "note": "23", + "note": "21", "powered": "false" } }, @@ -135170,7 +138710,7 @@ "id": 582, "properties": { "instrument": "harp", - "note": "24", + "note": "22", "powered": "true" } }, @@ -135178,39 +138718,39 @@ "id": 583, "properties": { "instrument": "harp", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 584, "properties": { - "instrument": "basedrum", - "note": "0", + "instrument": "harp", + "note": "23", "powered": "true" } }, { "id": 585, "properties": { - "instrument": "basedrum", - "note": "0", + "instrument": "harp", + "note": "23", "powered": "false" } }, { "id": 586, "properties": { - "instrument": "basedrum", - "note": "1", + "instrument": "harp", + "note": "24", "powered": "true" } }, { "id": 587, "properties": { - "instrument": "basedrum", - "note": "1", + "instrument": "harp", + "note": "24", "powered": "false" } }, @@ -135218,7 +138758,7 @@ "id": 588, "properties": { "instrument": "basedrum", - "note": "2", + "note": "0", "powered": "true" } }, @@ -135226,7 +138766,7 @@ "id": 589, "properties": { "instrument": "basedrum", - "note": "2", + "note": "0", "powered": "false" } }, @@ -135234,7 +138774,7 @@ "id": 590, "properties": { "instrument": "basedrum", - "note": "3", + "note": "1", "powered": "true" } }, @@ -135242,7 +138782,7 @@ "id": 591, "properties": { "instrument": "basedrum", - "note": "3", + "note": "1", "powered": "false" } }, @@ -135250,7 +138790,7 @@ "id": 592, "properties": { "instrument": "basedrum", - "note": "4", + "note": "2", "powered": "true" } }, @@ -135258,7 +138798,7 @@ "id": 593, "properties": { "instrument": "basedrum", - "note": "4", + "note": "2", "powered": "false" } }, @@ -135266,7 +138806,7 @@ "id": 594, "properties": { "instrument": "basedrum", - "note": "5", + "note": "3", "powered": "true" } }, @@ -135274,7 +138814,7 @@ "id": 595, "properties": { "instrument": "basedrum", - "note": "5", + "note": "3", "powered": "false" } }, @@ -135282,7 +138822,7 @@ "id": 596, "properties": { "instrument": "basedrum", - "note": "6", + "note": "4", "powered": "true" } }, @@ -135290,7 +138830,7 @@ "id": 597, "properties": { "instrument": "basedrum", - "note": "6", + "note": "4", "powered": "false" } }, @@ -135298,7 +138838,7 @@ "id": 598, "properties": { "instrument": "basedrum", - "note": "7", + "note": "5", "powered": "true" } }, @@ -135306,7 +138846,7 @@ "id": 599, "properties": { "instrument": "basedrum", - "note": "7", + "note": "5", "powered": "false" } }, @@ -135314,7 +138854,7 @@ "id": 600, "properties": { "instrument": "basedrum", - "note": "8", + "note": "6", "powered": "true" } }, @@ -135322,7 +138862,7 @@ "id": 601, "properties": { "instrument": "basedrum", - "note": "8", + "note": "6", "powered": "false" } }, @@ -135330,7 +138870,7 @@ "id": 602, "properties": { "instrument": "basedrum", - "note": "9", + "note": "7", "powered": "true" } }, @@ -135338,7 +138878,7 @@ "id": 603, "properties": { "instrument": "basedrum", - "note": "9", + "note": "7", "powered": "false" } }, @@ -135346,7 +138886,7 @@ "id": 604, "properties": { "instrument": "basedrum", - "note": "10", + "note": "8", "powered": "true" } }, @@ -135354,7 +138894,7 @@ "id": 605, "properties": { "instrument": "basedrum", - "note": "10", + "note": "8", "powered": "false" } }, @@ -135362,7 +138902,7 @@ "id": 606, "properties": { "instrument": "basedrum", - "note": "11", + "note": "9", "powered": "true" } }, @@ -135370,7 +138910,7 @@ "id": 607, "properties": { "instrument": "basedrum", - "note": "11", + "note": "9", "powered": "false" } }, @@ -135378,7 +138918,7 @@ "id": 608, "properties": { "instrument": "basedrum", - "note": "12", + "note": "10", "powered": "true" } }, @@ -135386,7 +138926,7 @@ "id": 609, "properties": { "instrument": "basedrum", - "note": "12", + "note": "10", "powered": "false" } }, @@ -135394,7 +138934,7 @@ "id": 610, "properties": { "instrument": "basedrum", - "note": "13", + "note": "11", "powered": "true" } }, @@ -135402,7 +138942,7 @@ "id": 611, "properties": { "instrument": "basedrum", - "note": "13", + "note": "11", "powered": "false" } }, @@ -135410,7 +138950,7 @@ "id": 612, "properties": { "instrument": "basedrum", - "note": "14", + "note": "12", "powered": "true" } }, @@ -135418,7 +138958,7 @@ "id": 613, "properties": { "instrument": "basedrum", - "note": "14", + "note": "12", "powered": "false" } }, @@ -135426,7 +138966,7 @@ "id": 614, "properties": { "instrument": "basedrum", - "note": "15", + "note": "13", "powered": "true" } }, @@ -135434,7 +138974,7 @@ "id": 615, "properties": { "instrument": "basedrum", - "note": "15", + "note": "13", "powered": "false" } }, @@ -135442,7 +138982,7 @@ "id": 616, "properties": { "instrument": "basedrum", - "note": "16", + "note": "14", "powered": "true" } }, @@ -135450,7 +138990,7 @@ "id": 617, "properties": { "instrument": "basedrum", - "note": "16", + "note": "14", "powered": "false" } }, @@ -135458,7 +138998,7 @@ "id": 618, "properties": { "instrument": "basedrum", - "note": "17", + "note": "15", "powered": "true" } }, @@ -135466,7 +139006,7 @@ "id": 619, "properties": { "instrument": "basedrum", - "note": "17", + "note": "15", "powered": "false" } }, @@ -135474,7 +139014,7 @@ "id": 620, "properties": { "instrument": "basedrum", - "note": "18", + "note": "16", "powered": "true" } }, @@ -135482,7 +139022,7 @@ "id": 621, "properties": { "instrument": "basedrum", - "note": "18", + "note": "16", "powered": "false" } }, @@ -135490,7 +139030,7 @@ "id": 622, "properties": { "instrument": "basedrum", - "note": "19", + "note": "17", "powered": "true" } }, @@ -135498,7 +139038,7 @@ "id": 623, "properties": { "instrument": "basedrum", - "note": "19", + "note": "17", "powered": "false" } }, @@ -135506,7 +139046,7 @@ "id": 624, "properties": { "instrument": "basedrum", - "note": "20", + "note": "18", "powered": "true" } }, @@ -135514,7 +139054,7 @@ "id": 625, "properties": { "instrument": "basedrum", - "note": "20", + "note": "18", "powered": "false" } }, @@ -135522,7 +139062,7 @@ "id": 626, "properties": { "instrument": "basedrum", - "note": "21", + "note": "19", "powered": "true" } }, @@ -135530,7 +139070,7 @@ "id": 627, "properties": { "instrument": "basedrum", - "note": "21", + "note": "19", "powered": "false" } }, @@ -135538,7 +139078,7 @@ "id": 628, "properties": { "instrument": "basedrum", - "note": "22", + "note": "20", "powered": "true" } }, @@ -135546,7 +139086,7 @@ "id": 629, "properties": { "instrument": "basedrum", - "note": "22", + "note": "20", "powered": "false" } }, @@ -135554,7 +139094,7 @@ "id": 630, "properties": { "instrument": "basedrum", - "note": "23", + "note": "21", "powered": "true" } }, @@ -135562,7 +139102,7 @@ "id": 631, "properties": { "instrument": "basedrum", - "note": "23", + "note": "21", "powered": "false" } }, @@ -135570,7 +139110,7 @@ "id": 632, "properties": { "instrument": "basedrum", - "note": "24", + "note": "22", "powered": "true" } }, @@ -135578,39 +139118,39 @@ "id": 633, "properties": { "instrument": "basedrum", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 634, "properties": { - "instrument": "snare", - "note": "0", + "instrument": "basedrum", + "note": "23", "powered": "true" } }, { "id": 635, "properties": { - "instrument": "snare", - "note": "0", + "instrument": "basedrum", + "note": "23", "powered": "false" } }, { "id": 636, "properties": { - "instrument": "snare", - "note": "1", + "instrument": "basedrum", + "note": "24", "powered": "true" } }, { "id": 637, "properties": { - "instrument": "snare", - "note": "1", + "instrument": "basedrum", + "note": "24", "powered": "false" } }, @@ -135618,7 +139158,7 @@ "id": 638, "properties": { "instrument": "snare", - "note": "2", + "note": "0", "powered": "true" } }, @@ -135626,7 +139166,7 @@ "id": 639, "properties": { "instrument": "snare", - "note": "2", + "note": "0", "powered": "false" } }, @@ -135634,7 +139174,7 @@ "id": 640, "properties": { "instrument": "snare", - "note": "3", + "note": "1", "powered": "true" } }, @@ -135642,7 +139182,7 @@ "id": 641, "properties": { "instrument": "snare", - "note": "3", + "note": "1", "powered": "false" } }, @@ -135650,7 +139190,7 @@ "id": 642, "properties": { "instrument": "snare", - "note": "4", + "note": "2", "powered": "true" } }, @@ -135658,7 +139198,7 @@ "id": 643, "properties": { "instrument": "snare", - "note": "4", + "note": "2", "powered": "false" } }, @@ -135666,7 +139206,7 @@ "id": 644, "properties": { "instrument": "snare", - "note": "5", + "note": "3", "powered": "true" } }, @@ -135674,7 +139214,7 @@ "id": 645, "properties": { "instrument": "snare", - "note": "5", + "note": "3", "powered": "false" } }, @@ -135682,7 +139222,7 @@ "id": 646, "properties": { "instrument": "snare", - "note": "6", + "note": "4", "powered": "true" } }, @@ -135690,7 +139230,7 @@ "id": 647, "properties": { "instrument": "snare", - "note": "6", + "note": "4", "powered": "false" } }, @@ -135698,7 +139238,7 @@ "id": 648, "properties": { "instrument": "snare", - "note": "7", + "note": "5", "powered": "true" } }, @@ -135706,7 +139246,7 @@ "id": 649, "properties": { "instrument": "snare", - "note": "7", + "note": "5", "powered": "false" } }, @@ -135714,7 +139254,7 @@ "id": 650, "properties": { "instrument": "snare", - "note": "8", + "note": "6", "powered": "true" } }, @@ -135722,7 +139262,7 @@ "id": 651, "properties": { "instrument": "snare", - "note": "8", + "note": "6", "powered": "false" } }, @@ -135730,7 +139270,7 @@ "id": 652, "properties": { "instrument": "snare", - "note": "9", + "note": "7", "powered": "true" } }, @@ -135738,7 +139278,7 @@ "id": 653, "properties": { "instrument": "snare", - "note": "9", + "note": "7", "powered": "false" } }, @@ -135746,7 +139286,7 @@ "id": 654, "properties": { "instrument": "snare", - "note": "10", + "note": "8", "powered": "true" } }, @@ -135754,7 +139294,7 @@ "id": 655, "properties": { "instrument": "snare", - "note": "10", + "note": "8", "powered": "false" } }, @@ -135762,7 +139302,7 @@ "id": 656, "properties": { "instrument": "snare", - "note": "11", + "note": "9", "powered": "true" } }, @@ -135770,7 +139310,7 @@ "id": 657, "properties": { "instrument": "snare", - "note": "11", + "note": "9", "powered": "false" } }, @@ -135778,7 +139318,7 @@ "id": 658, "properties": { "instrument": "snare", - "note": "12", + "note": "10", "powered": "true" } }, @@ -135786,7 +139326,7 @@ "id": 659, "properties": { "instrument": "snare", - "note": "12", + "note": "10", "powered": "false" } }, @@ -135794,7 +139334,7 @@ "id": 660, "properties": { "instrument": "snare", - "note": "13", + "note": "11", "powered": "true" } }, @@ -135802,7 +139342,7 @@ "id": 661, "properties": { "instrument": "snare", - "note": "13", + "note": "11", "powered": "false" } }, @@ -135810,7 +139350,7 @@ "id": 662, "properties": { "instrument": "snare", - "note": "14", + "note": "12", "powered": "true" } }, @@ -135818,7 +139358,7 @@ "id": 663, "properties": { "instrument": "snare", - "note": "14", + "note": "12", "powered": "false" } }, @@ -135826,7 +139366,7 @@ "id": 664, "properties": { "instrument": "snare", - "note": "15", + "note": "13", "powered": "true" } }, @@ -135834,7 +139374,7 @@ "id": 665, "properties": { "instrument": "snare", - "note": "15", + "note": "13", "powered": "false" } }, @@ -135842,7 +139382,7 @@ "id": 666, "properties": { "instrument": "snare", - "note": "16", + "note": "14", "powered": "true" } }, @@ -135850,7 +139390,7 @@ "id": 667, "properties": { "instrument": "snare", - "note": "16", + "note": "14", "powered": "false" } }, @@ -135858,7 +139398,7 @@ "id": 668, "properties": { "instrument": "snare", - "note": "17", + "note": "15", "powered": "true" } }, @@ -135866,7 +139406,7 @@ "id": 669, "properties": { "instrument": "snare", - "note": "17", + "note": "15", "powered": "false" } }, @@ -135874,7 +139414,7 @@ "id": 670, "properties": { "instrument": "snare", - "note": "18", + "note": "16", "powered": "true" } }, @@ -135882,7 +139422,7 @@ "id": 671, "properties": { "instrument": "snare", - "note": "18", + "note": "16", "powered": "false" } }, @@ -135890,7 +139430,7 @@ "id": 672, "properties": { "instrument": "snare", - "note": "19", + "note": "17", "powered": "true" } }, @@ -135898,7 +139438,7 @@ "id": 673, "properties": { "instrument": "snare", - "note": "19", + "note": "17", "powered": "false" } }, @@ -135906,7 +139446,7 @@ "id": 674, "properties": { "instrument": "snare", - "note": "20", + "note": "18", "powered": "true" } }, @@ -135914,7 +139454,7 @@ "id": 675, "properties": { "instrument": "snare", - "note": "20", + "note": "18", "powered": "false" } }, @@ -135922,7 +139462,7 @@ "id": 676, "properties": { "instrument": "snare", - "note": "21", + "note": "19", "powered": "true" } }, @@ -135930,7 +139470,7 @@ "id": 677, "properties": { "instrument": "snare", - "note": "21", + "note": "19", "powered": "false" } }, @@ -135938,7 +139478,7 @@ "id": 678, "properties": { "instrument": "snare", - "note": "22", + "note": "20", "powered": "true" } }, @@ -135946,7 +139486,7 @@ "id": 679, "properties": { "instrument": "snare", - "note": "22", + "note": "20", "powered": "false" } }, @@ -135954,7 +139494,7 @@ "id": 680, "properties": { "instrument": "snare", - "note": "23", + "note": "21", "powered": "true" } }, @@ -135962,7 +139502,7 @@ "id": 681, "properties": { "instrument": "snare", - "note": "23", + "note": "21", "powered": "false" } }, @@ -135970,7 +139510,7 @@ "id": 682, "properties": { "instrument": "snare", - "note": "24", + "note": "22", "powered": "true" } }, @@ -135978,39 +139518,39 @@ "id": 683, "properties": { "instrument": "snare", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 684, "properties": { - "instrument": "hat", - "note": "0", + "instrument": "snare", + "note": "23", "powered": "true" } }, { "id": 685, "properties": { - "instrument": "hat", - "note": "0", + "instrument": "snare", + "note": "23", "powered": "false" } }, { "id": 686, "properties": { - "instrument": "hat", - "note": "1", + "instrument": "snare", + "note": "24", "powered": "true" } }, { "id": 687, "properties": { - "instrument": "hat", - "note": "1", + "instrument": "snare", + "note": "24", "powered": "false" } }, @@ -136018,7 +139558,7 @@ "id": 688, "properties": { "instrument": "hat", - "note": "2", + "note": "0", "powered": "true" } }, @@ -136026,7 +139566,7 @@ "id": 689, "properties": { "instrument": "hat", - "note": "2", + "note": "0", "powered": "false" } }, @@ -136034,7 +139574,7 @@ "id": 690, "properties": { "instrument": "hat", - "note": "3", + "note": "1", "powered": "true" } }, @@ -136042,7 +139582,7 @@ "id": 691, "properties": { "instrument": "hat", - "note": "3", + "note": "1", "powered": "false" } }, @@ -136050,7 +139590,7 @@ "id": 692, "properties": { "instrument": "hat", - "note": "4", + "note": "2", "powered": "true" } }, @@ -136058,7 +139598,7 @@ "id": 693, "properties": { "instrument": "hat", - "note": "4", + "note": "2", "powered": "false" } }, @@ -136066,7 +139606,7 @@ "id": 694, "properties": { "instrument": "hat", - "note": "5", + "note": "3", "powered": "true" } }, @@ -136074,7 +139614,7 @@ "id": 695, "properties": { "instrument": "hat", - "note": "5", + "note": "3", "powered": "false" } }, @@ -136082,7 +139622,7 @@ "id": 696, "properties": { "instrument": "hat", - "note": "6", + "note": "4", "powered": "true" } }, @@ -136090,7 +139630,7 @@ "id": 697, "properties": { "instrument": "hat", - "note": "6", + "note": "4", "powered": "false" } }, @@ -136098,7 +139638,7 @@ "id": 698, "properties": { "instrument": "hat", - "note": "7", + "note": "5", "powered": "true" } }, @@ -136106,7 +139646,7 @@ "id": 699, "properties": { "instrument": "hat", - "note": "7", + "note": "5", "powered": "false" } }, @@ -136114,7 +139654,7 @@ "id": 700, "properties": { "instrument": "hat", - "note": "8", + "note": "6", "powered": "true" } }, @@ -136122,7 +139662,7 @@ "id": 701, "properties": { "instrument": "hat", - "note": "8", + "note": "6", "powered": "false" } }, @@ -136130,7 +139670,7 @@ "id": 702, "properties": { "instrument": "hat", - "note": "9", + "note": "7", "powered": "true" } }, @@ -136138,7 +139678,7 @@ "id": 703, "properties": { "instrument": "hat", - "note": "9", + "note": "7", "powered": "false" } }, @@ -136146,7 +139686,7 @@ "id": 704, "properties": { "instrument": "hat", - "note": "10", + "note": "8", "powered": "true" } }, @@ -136154,7 +139694,7 @@ "id": 705, "properties": { "instrument": "hat", - "note": "10", + "note": "8", "powered": "false" } }, @@ -136162,7 +139702,7 @@ "id": 706, "properties": { "instrument": "hat", - "note": "11", + "note": "9", "powered": "true" } }, @@ -136170,7 +139710,7 @@ "id": 707, "properties": { "instrument": "hat", - "note": "11", + "note": "9", "powered": "false" } }, @@ -136178,7 +139718,7 @@ "id": 708, "properties": { "instrument": "hat", - "note": "12", + "note": "10", "powered": "true" } }, @@ -136186,7 +139726,7 @@ "id": 709, "properties": { "instrument": "hat", - "note": "12", + "note": "10", "powered": "false" } }, @@ -136194,7 +139734,7 @@ "id": 710, "properties": { "instrument": "hat", - "note": "13", + "note": "11", "powered": "true" } }, @@ -136202,7 +139742,7 @@ "id": 711, "properties": { "instrument": "hat", - "note": "13", + "note": "11", "powered": "false" } }, @@ -136210,7 +139750,7 @@ "id": 712, "properties": { "instrument": "hat", - "note": "14", + "note": "12", "powered": "true" } }, @@ -136218,7 +139758,7 @@ "id": 713, "properties": { "instrument": "hat", - "note": "14", + "note": "12", "powered": "false" } }, @@ -136226,7 +139766,7 @@ "id": 714, "properties": { "instrument": "hat", - "note": "15", + "note": "13", "powered": "true" } }, @@ -136234,7 +139774,7 @@ "id": 715, "properties": { "instrument": "hat", - "note": "15", + "note": "13", "powered": "false" } }, @@ -136242,7 +139782,7 @@ "id": 716, "properties": { "instrument": "hat", - "note": "16", + "note": "14", "powered": "true" } }, @@ -136250,7 +139790,7 @@ "id": 717, "properties": { "instrument": "hat", - "note": "16", + "note": "14", "powered": "false" } }, @@ -136258,7 +139798,7 @@ "id": 718, "properties": { "instrument": "hat", - "note": "17", + "note": "15", "powered": "true" } }, @@ -136266,7 +139806,7 @@ "id": 719, "properties": { "instrument": "hat", - "note": "17", + "note": "15", "powered": "false" } }, @@ -136274,7 +139814,7 @@ "id": 720, "properties": { "instrument": "hat", - "note": "18", + "note": "16", "powered": "true" } }, @@ -136282,7 +139822,7 @@ "id": 721, "properties": { "instrument": "hat", - "note": "18", + "note": "16", "powered": "false" } }, @@ -136290,7 +139830,7 @@ "id": 722, "properties": { "instrument": "hat", - "note": "19", + "note": "17", "powered": "true" } }, @@ -136298,7 +139838,7 @@ "id": 723, "properties": { "instrument": "hat", - "note": "19", + "note": "17", "powered": "false" } }, @@ -136306,7 +139846,7 @@ "id": 724, "properties": { "instrument": "hat", - "note": "20", + "note": "18", "powered": "true" } }, @@ -136314,7 +139854,7 @@ "id": 725, "properties": { "instrument": "hat", - "note": "20", + "note": "18", "powered": "false" } }, @@ -136322,7 +139862,7 @@ "id": 726, "properties": { "instrument": "hat", - "note": "21", + "note": "19", "powered": "true" } }, @@ -136330,7 +139870,7 @@ "id": 727, "properties": { "instrument": "hat", - "note": "21", + "note": "19", "powered": "false" } }, @@ -136338,7 +139878,7 @@ "id": 728, "properties": { "instrument": "hat", - "note": "22", + "note": "20", "powered": "true" } }, @@ -136346,7 +139886,7 @@ "id": 729, "properties": { "instrument": "hat", - "note": "22", + "note": "20", "powered": "false" } }, @@ -136354,7 +139894,7 @@ "id": 730, "properties": { "instrument": "hat", - "note": "23", + "note": "21", "powered": "true" } }, @@ -136362,7 +139902,7 @@ "id": 731, "properties": { "instrument": "hat", - "note": "23", + "note": "21", "powered": "false" } }, @@ -136370,7 +139910,7 @@ "id": 732, "properties": { "instrument": "hat", - "note": "24", + "note": "22", "powered": "true" } }, @@ -136378,39 +139918,39 @@ "id": 733, "properties": { "instrument": "hat", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 734, "properties": { - "instrument": "bass", - "note": "0", + "instrument": "hat", + "note": "23", "powered": "true" } }, { "id": 735, "properties": { - "instrument": "bass", - "note": "0", + "instrument": "hat", + "note": "23", "powered": "false" } }, { "id": 736, "properties": { - "instrument": "bass", - "note": "1", + "instrument": "hat", + "note": "24", "powered": "true" } }, { "id": 737, "properties": { - "instrument": "bass", - "note": "1", + "instrument": "hat", + "note": "24", "powered": "false" } }, @@ -136418,7 +139958,7 @@ "id": 738, "properties": { "instrument": "bass", - "note": "2", + "note": "0", "powered": "true" } }, @@ -136426,7 +139966,7 @@ "id": 739, "properties": { "instrument": "bass", - "note": "2", + "note": "0", "powered": "false" } }, @@ -136434,7 +139974,7 @@ "id": 740, "properties": { "instrument": "bass", - "note": "3", + "note": "1", "powered": "true" } }, @@ -136442,7 +139982,7 @@ "id": 741, "properties": { "instrument": "bass", - "note": "3", + "note": "1", "powered": "false" } }, @@ -136450,7 +139990,7 @@ "id": 742, "properties": { "instrument": "bass", - "note": "4", + "note": "2", "powered": "true" } }, @@ -136458,7 +139998,7 @@ "id": 743, "properties": { "instrument": "bass", - "note": "4", + "note": "2", "powered": "false" } }, @@ -136466,7 +140006,7 @@ "id": 744, "properties": { "instrument": "bass", - "note": "5", + "note": "3", "powered": "true" } }, @@ -136474,7 +140014,7 @@ "id": 745, "properties": { "instrument": "bass", - "note": "5", + "note": "3", "powered": "false" } }, @@ -136482,7 +140022,7 @@ "id": 746, "properties": { "instrument": "bass", - "note": "6", + "note": "4", "powered": "true" } }, @@ -136490,7 +140030,7 @@ "id": 747, "properties": { "instrument": "bass", - "note": "6", + "note": "4", "powered": "false" } }, @@ -136498,7 +140038,7 @@ "id": 748, "properties": { "instrument": "bass", - "note": "7", + "note": "5", "powered": "true" } }, @@ -136506,7 +140046,7 @@ "id": 749, "properties": { "instrument": "bass", - "note": "7", + "note": "5", "powered": "false" } }, @@ -136514,7 +140054,7 @@ "id": 750, "properties": { "instrument": "bass", - "note": "8", + "note": "6", "powered": "true" } }, @@ -136522,7 +140062,7 @@ "id": 751, "properties": { "instrument": "bass", - "note": "8", + "note": "6", "powered": "false" } }, @@ -136530,7 +140070,7 @@ "id": 752, "properties": { "instrument": "bass", - "note": "9", + "note": "7", "powered": "true" } }, @@ -136538,7 +140078,7 @@ "id": 753, "properties": { "instrument": "bass", - "note": "9", + "note": "7", "powered": "false" } }, @@ -136546,7 +140086,7 @@ "id": 754, "properties": { "instrument": "bass", - "note": "10", + "note": "8", "powered": "true" } }, @@ -136554,7 +140094,7 @@ "id": 755, "properties": { "instrument": "bass", - "note": "10", + "note": "8", "powered": "false" } }, @@ -136562,7 +140102,7 @@ "id": 756, "properties": { "instrument": "bass", - "note": "11", + "note": "9", "powered": "true" } }, @@ -136570,7 +140110,7 @@ "id": 757, "properties": { "instrument": "bass", - "note": "11", + "note": "9", "powered": "false" } }, @@ -136578,7 +140118,7 @@ "id": 758, "properties": { "instrument": "bass", - "note": "12", + "note": "10", "powered": "true" } }, @@ -136586,7 +140126,7 @@ "id": 759, "properties": { "instrument": "bass", - "note": "12", + "note": "10", "powered": "false" } }, @@ -136594,7 +140134,7 @@ "id": 760, "properties": { "instrument": "bass", - "note": "13", + "note": "11", "powered": "true" } }, @@ -136602,7 +140142,7 @@ "id": 761, "properties": { "instrument": "bass", - "note": "13", + "note": "11", "powered": "false" } }, @@ -136610,7 +140150,7 @@ "id": 762, "properties": { "instrument": "bass", - "note": "14", + "note": "12", "powered": "true" } }, @@ -136618,7 +140158,7 @@ "id": 763, "properties": { "instrument": "bass", - "note": "14", + "note": "12", "powered": "false" } }, @@ -136626,7 +140166,7 @@ "id": 764, "properties": { "instrument": "bass", - "note": "15", + "note": "13", "powered": "true" } }, @@ -136634,7 +140174,7 @@ "id": 765, "properties": { "instrument": "bass", - "note": "15", + "note": "13", "powered": "false" } }, @@ -136642,7 +140182,7 @@ "id": 766, "properties": { "instrument": "bass", - "note": "16", + "note": "14", "powered": "true" } }, @@ -136650,7 +140190,7 @@ "id": 767, "properties": { "instrument": "bass", - "note": "16", + "note": "14", "powered": "false" } }, @@ -136658,7 +140198,7 @@ "id": 768, "properties": { "instrument": "bass", - "note": "17", + "note": "15", "powered": "true" } }, @@ -136666,7 +140206,7 @@ "id": 769, "properties": { "instrument": "bass", - "note": "17", + "note": "15", "powered": "false" } }, @@ -136674,7 +140214,7 @@ "id": 770, "properties": { "instrument": "bass", - "note": "18", + "note": "16", "powered": "true" } }, @@ -136682,7 +140222,7 @@ "id": 771, "properties": { "instrument": "bass", - "note": "18", + "note": "16", "powered": "false" } }, @@ -136690,7 +140230,7 @@ "id": 772, "properties": { "instrument": "bass", - "note": "19", + "note": "17", "powered": "true" } }, @@ -136698,7 +140238,7 @@ "id": 773, "properties": { "instrument": "bass", - "note": "19", + "note": "17", "powered": "false" } }, @@ -136706,7 +140246,7 @@ "id": 774, "properties": { "instrument": "bass", - "note": "20", + "note": "18", "powered": "true" } }, @@ -136714,7 +140254,7 @@ "id": 775, "properties": { "instrument": "bass", - "note": "20", + "note": "18", "powered": "false" } }, @@ -136722,7 +140262,7 @@ "id": 776, "properties": { "instrument": "bass", - "note": "21", + "note": "19", "powered": "true" } }, @@ -136730,7 +140270,7 @@ "id": 777, "properties": { "instrument": "bass", - "note": "21", + "note": "19", "powered": "false" } }, @@ -136738,7 +140278,7 @@ "id": 778, "properties": { "instrument": "bass", - "note": "22", + "note": "20", "powered": "true" } }, @@ -136746,7 +140286,7 @@ "id": 779, "properties": { "instrument": "bass", - "note": "22", + "note": "20", "powered": "false" } }, @@ -136754,7 +140294,7 @@ "id": 780, "properties": { "instrument": "bass", - "note": "23", + "note": "21", "powered": "true" } }, @@ -136762,7 +140302,7 @@ "id": 781, "properties": { "instrument": "bass", - "note": "23", + "note": "21", "powered": "false" } }, @@ -136770,7 +140310,7 @@ "id": 782, "properties": { "instrument": "bass", - "note": "24", + "note": "22", "powered": "true" } }, @@ -136778,39 +140318,39 @@ "id": 783, "properties": { "instrument": "bass", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 784, "properties": { - "instrument": "flute", - "note": "0", + "instrument": "bass", + "note": "23", "powered": "true" } }, { "id": 785, "properties": { - "instrument": "flute", - "note": "0", + "instrument": "bass", + "note": "23", "powered": "false" } }, { "id": 786, "properties": { - "instrument": "flute", - "note": "1", + "instrument": "bass", + "note": "24", "powered": "true" } }, { "id": 787, "properties": { - "instrument": "flute", - "note": "1", + "instrument": "bass", + "note": "24", "powered": "false" } }, @@ -136818,7 +140358,7 @@ "id": 788, "properties": { "instrument": "flute", - "note": "2", + "note": "0", "powered": "true" } }, @@ -136826,7 +140366,7 @@ "id": 789, "properties": { "instrument": "flute", - "note": "2", + "note": "0", "powered": "false" } }, @@ -136834,7 +140374,7 @@ "id": 790, "properties": { "instrument": "flute", - "note": "3", + "note": "1", "powered": "true" } }, @@ -136842,7 +140382,7 @@ "id": 791, "properties": { "instrument": "flute", - "note": "3", + "note": "1", "powered": "false" } }, @@ -136850,7 +140390,7 @@ "id": 792, "properties": { "instrument": "flute", - "note": "4", + "note": "2", "powered": "true" } }, @@ -136858,7 +140398,7 @@ "id": 793, "properties": { "instrument": "flute", - "note": "4", + "note": "2", "powered": "false" } }, @@ -136866,7 +140406,7 @@ "id": 794, "properties": { "instrument": "flute", - "note": "5", + "note": "3", "powered": "true" } }, @@ -136874,7 +140414,7 @@ "id": 795, "properties": { "instrument": "flute", - "note": "5", + "note": "3", "powered": "false" } }, @@ -136882,7 +140422,7 @@ "id": 796, "properties": { "instrument": "flute", - "note": "6", + "note": "4", "powered": "true" } }, @@ -136890,7 +140430,7 @@ "id": 797, "properties": { "instrument": "flute", - "note": "6", + "note": "4", "powered": "false" } }, @@ -136898,7 +140438,7 @@ "id": 798, "properties": { "instrument": "flute", - "note": "7", + "note": "5", "powered": "true" } }, @@ -136906,7 +140446,7 @@ "id": 799, "properties": { "instrument": "flute", - "note": "7", + "note": "5", "powered": "false" } }, @@ -136914,7 +140454,7 @@ "id": 800, "properties": { "instrument": "flute", - "note": "8", + "note": "6", "powered": "true" } }, @@ -136922,7 +140462,7 @@ "id": 801, "properties": { "instrument": "flute", - "note": "8", + "note": "6", "powered": "false" } }, @@ -136930,7 +140470,7 @@ "id": 802, "properties": { "instrument": "flute", - "note": "9", + "note": "7", "powered": "true" } }, @@ -136938,7 +140478,7 @@ "id": 803, "properties": { "instrument": "flute", - "note": "9", + "note": "7", "powered": "false" } }, @@ -136946,7 +140486,7 @@ "id": 804, "properties": { "instrument": "flute", - "note": "10", + "note": "8", "powered": "true" } }, @@ -136954,7 +140494,7 @@ "id": 805, "properties": { "instrument": "flute", - "note": "10", + "note": "8", "powered": "false" } }, @@ -136962,7 +140502,7 @@ "id": 806, "properties": { "instrument": "flute", - "note": "11", + "note": "9", "powered": "true" } }, @@ -136970,7 +140510,7 @@ "id": 807, "properties": { "instrument": "flute", - "note": "11", + "note": "9", "powered": "false" } }, @@ -136978,7 +140518,7 @@ "id": 808, "properties": { "instrument": "flute", - "note": "12", + "note": "10", "powered": "true" } }, @@ -136986,7 +140526,7 @@ "id": 809, "properties": { "instrument": "flute", - "note": "12", + "note": "10", "powered": "false" } }, @@ -136994,7 +140534,7 @@ "id": 810, "properties": { "instrument": "flute", - "note": "13", + "note": "11", "powered": "true" } }, @@ -137002,7 +140542,7 @@ "id": 811, "properties": { "instrument": "flute", - "note": "13", + "note": "11", "powered": "false" } }, @@ -137010,7 +140550,7 @@ "id": 812, "properties": { "instrument": "flute", - "note": "14", + "note": "12", "powered": "true" } }, @@ -137018,7 +140558,7 @@ "id": 813, "properties": { "instrument": "flute", - "note": "14", + "note": "12", "powered": "false" } }, @@ -137026,7 +140566,7 @@ "id": 814, "properties": { "instrument": "flute", - "note": "15", + "note": "13", "powered": "true" } }, @@ -137034,7 +140574,7 @@ "id": 815, "properties": { "instrument": "flute", - "note": "15", + "note": "13", "powered": "false" } }, @@ -137042,7 +140582,7 @@ "id": 816, "properties": { "instrument": "flute", - "note": "16", + "note": "14", "powered": "true" } }, @@ -137050,7 +140590,7 @@ "id": 817, "properties": { "instrument": "flute", - "note": "16", + "note": "14", "powered": "false" } }, @@ -137058,7 +140598,7 @@ "id": 818, "properties": { "instrument": "flute", - "note": "17", + "note": "15", "powered": "true" } }, @@ -137066,7 +140606,7 @@ "id": 819, "properties": { "instrument": "flute", - "note": "17", + "note": "15", "powered": "false" } }, @@ -137074,7 +140614,7 @@ "id": 820, "properties": { "instrument": "flute", - "note": "18", + "note": "16", "powered": "true" } }, @@ -137082,7 +140622,7 @@ "id": 821, "properties": { "instrument": "flute", - "note": "18", + "note": "16", "powered": "false" } }, @@ -137090,7 +140630,7 @@ "id": 822, "properties": { "instrument": "flute", - "note": "19", + "note": "17", "powered": "true" } }, @@ -137098,7 +140638,7 @@ "id": 823, "properties": { "instrument": "flute", - "note": "19", + "note": "17", "powered": "false" } }, @@ -137106,7 +140646,7 @@ "id": 824, "properties": { "instrument": "flute", - "note": "20", + "note": "18", "powered": "true" } }, @@ -137114,7 +140654,7 @@ "id": 825, "properties": { "instrument": "flute", - "note": "20", + "note": "18", "powered": "false" } }, @@ -137122,7 +140662,7 @@ "id": 826, "properties": { "instrument": "flute", - "note": "21", + "note": "19", "powered": "true" } }, @@ -137130,7 +140670,7 @@ "id": 827, "properties": { "instrument": "flute", - "note": "21", + "note": "19", "powered": "false" } }, @@ -137138,7 +140678,7 @@ "id": 828, "properties": { "instrument": "flute", - "note": "22", + "note": "20", "powered": "true" } }, @@ -137146,7 +140686,7 @@ "id": 829, "properties": { "instrument": "flute", - "note": "22", + "note": "20", "powered": "false" } }, @@ -137154,7 +140694,7 @@ "id": 830, "properties": { "instrument": "flute", - "note": "23", + "note": "21", "powered": "true" } }, @@ -137162,7 +140702,7 @@ "id": 831, "properties": { "instrument": "flute", - "note": "23", + "note": "21", "powered": "false" } }, @@ -137170,7 +140710,7 @@ "id": 832, "properties": { "instrument": "flute", - "note": "24", + "note": "22", "powered": "true" } }, @@ -137178,39 +140718,39 @@ "id": 833, "properties": { "instrument": "flute", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 834, "properties": { - "instrument": "bell", - "note": "0", + "instrument": "flute", + "note": "23", "powered": "true" } }, { "id": 835, "properties": { - "instrument": "bell", - "note": "0", + "instrument": "flute", + "note": "23", "powered": "false" } }, { "id": 836, "properties": { - "instrument": "bell", - "note": "1", + "instrument": "flute", + "note": "24", "powered": "true" } }, { "id": 837, "properties": { - "instrument": "bell", - "note": "1", + "instrument": "flute", + "note": "24", "powered": "false" } }, @@ -137218,7 +140758,7 @@ "id": 838, "properties": { "instrument": "bell", - "note": "2", + "note": "0", "powered": "true" } }, @@ -137226,7 +140766,7 @@ "id": 839, "properties": { "instrument": "bell", - "note": "2", + "note": "0", "powered": "false" } }, @@ -137234,7 +140774,7 @@ "id": 840, "properties": { "instrument": "bell", - "note": "3", + "note": "1", "powered": "true" } }, @@ -137242,7 +140782,7 @@ "id": 841, "properties": { "instrument": "bell", - "note": "3", + "note": "1", "powered": "false" } }, @@ -137250,7 +140790,7 @@ "id": 842, "properties": { "instrument": "bell", - "note": "4", + "note": "2", "powered": "true" } }, @@ -137258,7 +140798,7 @@ "id": 843, "properties": { "instrument": "bell", - "note": "4", + "note": "2", "powered": "false" } }, @@ -137266,7 +140806,7 @@ "id": 844, "properties": { "instrument": "bell", - "note": "5", + "note": "3", "powered": "true" } }, @@ -137274,7 +140814,7 @@ "id": 845, "properties": { "instrument": "bell", - "note": "5", + "note": "3", "powered": "false" } }, @@ -137282,7 +140822,7 @@ "id": 846, "properties": { "instrument": "bell", - "note": "6", + "note": "4", "powered": "true" } }, @@ -137290,7 +140830,7 @@ "id": 847, "properties": { "instrument": "bell", - "note": "6", + "note": "4", "powered": "false" } }, @@ -137298,7 +140838,7 @@ "id": 848, "properties": { "instrument": "bell", - "note": "7", + "note": "5", "powered": "true" } }, @@ -137306,7 +140846,7 @@ "id": 849, "properties": { "instrument": "bell", - "note": "7", + "note": "5", "powered": "false" } }, @@ -137314,7 +140854,7 @@ "id": 850, "properties": { "instrument": "bell", - "note": "8", + "note": "6", "powered": "true" } }, @@ -137322,7 +140862,7 @@ "id": 851, "properties": { "instrument": "bell", - "note": "8", + "note": "6", "powered": "false" } }, @@ -137330,7 +140870,7 @@ "id": 852, "properties": { "instrument": "bell", - "note": "9", + "note": "7", "powered": "true" } }, @@ -137338,7 +140878,7 @@ "id": 853, "properties": { "instrument": "bell", - "note": "9", + "note": "7", "powered": "false" } }, @@ -137346,7 +140886,7 @@ "id": 854, "properties": { "instrument": "bell", - "note": "10", + "note": "8", "powered": "true" } }, @@ -137354,7 +140894,7 @@ "id": 855, "properties": { "instrument": "bell", - "note": "10", + "note": "8", "powered": "false" } }, @@ -137362,7 +140902,7 @@ "id": 856, "properties": { "instrument": "bell", - "note": "11", + "note": "9", "powered": "true" } }, @@ -137370,7 +140910,7 @@ "id": 857, "properties": { "instrument": "bell", - "note": "11", + "note": "9", "powered": "false" } }, @@ -137378,7 +140918,7 @@ "id": 858, "properties": { "instrument": "bell", - "note": "12", + "note": "10", "powered": "true" } }, @@ -137386,7 +140926,7 @@ "id": 859, "properties": { "instrument": "bell", - "note": "12", + "note": "10", "powered": "false" } }, @@ -137394,7 +140934,7 @@ "id": 860, "properties": { "instrument": "bell", - "note": "13", + "note": "11", "powered": "true" } }, @@ -137402,7 +140942,7 @@ "id": 861, "properties": { "instrument": "bell", - "note": "13", + "note": "11", "powered": "false" } }, @@ -137410,7 +140950,7 @@ "id": 862, "properties": { "instrument": "bell", - "note": "14", + "note": "12", "powered": "true" } }, @@ -137418,7 +140958,7 @@ "id": 863, "properties": { "instrument": "bell", - "note": "14", + "note": "12", "powered": "false" } }, @@ -137426,7 +140966,7 @@ "id": 864, "properties": { "instrument": "bell", - "note": "15", + "note": "13", "powered": "true" } }, @@ -137434,7 +140974,7 @@ "id": 865, "properties": { "instrument": "bell", - "note": "15", + "note": "13", "powered": "false" } }, @@ -137442,7 +140982,7 @@ "id": 866, "properties": { "instrument": "bell", - "note": "16", + "note": "14", "powered": "true" } }, @@ -137450,7 +140990,7 @@ "id": 867, "properties": { "instrument": "bell", - "note": "16", + "note": "14", "powered": "false" } }, @@ -137458,7 +140998,7 @@ "id": 868, "properties": { "instrument": "bell", - "note": "17", + "note": "15", "powered": "true" } }, @@ -137466,7 +141006,7 @@ "id": 869, "properties": { "instrument": "bell", - "note": "17", + "note": "15", "powered": "false" } }, @@ -137474,7 +141014,7 @@ "id": 870, "properties": { "instrument": "bell", - "note": "18", + "note": "16", "powered": "true" } }, @@ -137482,7 +141022,7 @@ "id": 871, "properties": { "instrument": "bell", - "note": "18", + "note": "16", "powered": "false" } }, @@ -137490,7 +141030,7 @@ "id": 872, "properties": { "instrument": "bell", - "note": "19", + "note": "17", "powered": "true" } }, @@ -137498,7 +141038,7 @@ "id": 873, "properties": { "instrument": "bell", - "note": "19", + "note": "17", "powered": "false" } }, @@ -137506,7 +141046,7 @@ "id": 874, "properties": { "instrument": "bell", - "note": "20", + "note": "18", "powered": "true" } }, @@ -137514,7 +141054,7 @@ "id": 875, "properties": { "instrument": "bell", - "note": "20", + "note": "18", "powered": "false" } }, @@ -137522,7 +141062,7 @@ "id": 876, "properties": { "instrument": "bell", - "note": "21", + "note": "19", "powered": "true" } }, @@ -137530,7 +141070,7 @@ "id": 877, "properties": { "instrument": "bell", - "note": "21", + "note": "19", "powered": "false" } }, @@ -137538,7 +141078,7 @@ "id": 878, "properties": { "instrument": "bell", - "note": "22", + "note": "20", "powered": "true" } }, @@ -137546,7 +141086,7 @@ "id": 879, "properties": { "instrument": "bell", - "note": "22", + "note": "20", "powered": "false" } }, @@ -137554,7 +141094,7 @@ "id": 880, "properties": { "instrument": "bell", - "note": "23", + "note": "21", "powered": "true" } }, @@ -137562,7 +141102,7 @@ "id": 881, "properties": { "instrument": "bell", - "note": "23", + "note": "21", "powered": "false" } }, @@ -137570,7 +141110,7 @@ "id": 882, "properties": { "instrument": "bell", - "note": "24", + "note": "22", "powered": "true" } }, @@ -137578,39 +141118,39 @@ "id": 883, "properties": { "instrument": "bell", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 884, "properties": { - "instrument": "guitar", - "note": "0", + "instrument": "bell", + "note": "23", "powered": "true" } }, { "id": 885, "properties": { - "instrument": "guitar", - "note": "0", + "instrument": "bell", + "note": "23", "powered": "false" } }, { "id": 886, "properties": { - "instrument": "guitar", - "note": "1", + "instrument": "bell", + "note": "24", "powered": "true" } }, { "id": 887, "properties": { - "instrument": "guitar", - "note": "1", + "instrument": "bell", + "note": "24", "powered": "false" } }, @@ -137618,7 +141158,7 @@ "id": 888, "properties": { "instrument": "guitar", - "note": "2", + "note": "0", "powered": "true" } }, @@ -137626,7 +141166,7 @@ "id": 889, "properties": { "instrument": "guitar", - "note": "2", + "note": "0", "powered": "false" } }, @@ -137634,7 +141174,7 @@ "id": 890, "properties": { "instrument": "guitar", - "note": "3", + "note": "1", "powered": "true" } }, @@ -137642,7 +141182,7 @@ "id": 891, "properties": { "instrument": "guitar", - "note": "3", + "note": "1", "powered": "false" } }, @@ -137650,7 +141190,7 @@ "id": 892, "properties": { "instrument": "guitar", - "note": "4", + "note": "2", "powered": "true" } }, @@ -137658,7 +141198,7 @@ "id": 893, "properties": { "instrument": "guitar", - "note": "4", + "note": "2", "powered": "false" } }, @@ -137666,7 +141206,7 @@ "id": 894, "properties": { "instrument": "guitar", - "note": "5", + "note": "3", "powered": "true" } }, @@ -137674,7 +141214,7 @@ "id": 895, "properties": { "instrument": "guitar", - "note": "5", + "note": "3", "powered": "false" } }, @@ -137682,7 +141222,7 @@ "id": 896, "properties": { "instrument": "guitar", - "note": "6", + "note": "4", "powered": "true" } }, @@ -137690,7 +141230,7 @@ "id": 897, "properties": { "instrument": "guitar", - "note": "6", + "note": "4", "powered": "false" } }, @@ -137698,7 +141238,7 @@ "id": 898, "properties": { "instrument": "guitar", - "note": "7", + "note": "5", "powered": "true" } }, @@ -137706,7 +141246,7 @@ "id": 899, "properties": { "instrument": "guitar", - "note": "7", + "note": "5", "powered": "false" } }, @@ -137714,7 +141254,7 @@ "id": 900, "properties": { "instrument": "guitar", - "note": "8", + "note": "6", "powered": "true" } }, @@ -137722,7 +141262,7 @@ "id": 901, "properties": { "instrument": "guitar", - "note": "8", + "note": "6", "powered": "false" } }, @@ -137730,7 +141270,7 @@ "id": 902, "properties": { "instrument": "guitar", - "note": "9", + "note": "7", "powered": "true" } }, @@ -137738,7 +141278,7 @@ "id": 903, "properties": { "instrument": "guitar", - "note": "9", + "note": "7", "powered": "false" } }, @@ -137746,7 +141286,7 @@ "id": 904, "properties": { "instrument": "guitar", - "note": "10", + "note": "8", "powered": "true" } }, @@ -137754,7 +141294,7 @@ "id": 905, "properties": { "instrument": "guitar", - "note": "10", + "note": "8", "powered": "false" } }, @@ -137762,7 +141302,7 @@ "id": 906, "properties": { "instrument": "guitar", - "note": "11", + "note": "9", "powered": "true" } }, @@ -137770,7 +141310,7 @@ "id": 907, "properties": { "instrument": "guitar", - "note": "11", + "note": "9", "powered": "false" } }, @@ -137778,7 +141318,7 @@ "id": 908, "properties": { "instrument": "guitar", - "note": "12", + "note": "10", "powered": "true" } }, @@ -137786,7 +141326,7 @@ "id": 909, "properties": { "instrument": "guitar", - "note": "12", + "note": "10", "powered": "false" } }, @@ -137794,7 +141334,7 @@ "id": 910, "properties": { "instrument": "guitar", - "note": "13", + "note": "11", "powered": "true" } }, @@ -137802,7 +141342,7 @@ "id": 911, "properties": { "instrument": "guitar", - "note": "13", + "note": "11", "powered": "false" } }, @@ -137810,7 +141350,7 @@ "id": 912, "properties": { "instrument": "guitar", - "note": "14", + "note": "12", "powered": "true" } }, @@ -137818,7 +141358,7 @@ "id": 913, "properties": { "instrument": "guitar", - "note": "14", + "note": "12", "powered": "false" } }, @@ -137826,7 +141366,7 @@ "id": 914, "properties": { "instrument": "guitar", - "note": "15", + "note": "13", "powered": "true" } }, @@ -137834,7 +141374,7 @@ "id": 915, "properties": { "instrument": "guitar", - "note": "15", + "note": "13", "powered": "false" } }, @@ -137842,7 +141382,7 @@ "id": 916, "properties": { "instrument": "guitar", - "note": "16", + "note": "14", "powered": "true" } }, @@ -137850,7 +141390,7 @@ "id": 917, "properties": { "instrument": "guitar", - "note": "16", + "note": "14", "powered": "false" } }, @@ -137858,7 +141398,7 @@ "id": 918, "properties": { "instrument": "guitar", - "note": "17", + "note": "15", "powered": "true" } }, @@ -137866,7 +141406,7 @@ "id": 919, "properties": { "instrument": "guitar", - "note": "17", + "note": "15", "powered": "false" } }, @@ -137874,7 +141414,7 @@ "id": 920, "properties": { "instrument": "guitar", - "note": "18", + "note": "16", "powered": "true" } }, @@ -137882,7 +141422,7 @@ "id": 921, "properties": { "instrument": "guitar", - "note": "18", + "note": "16", "powered": "false" } }, @@ -137890,7 +141430,7 @@ "id": 922, "properties": { "instrument": "guitar", - "note": "19", + "note": "17", "powered": "true" } }, @@ -137898,7 +141438,7 @@ "id": 923, "properties": { "instrument": "guitar", - "note": "19", + "note": "17", "powered": "false" } }, @@ -137906,7 +141446,7 @@ "id": 924, "properties": { "instrument": "guitar", - "note": "20", + "note": "18", "powered": "true" } }, @@ -137914,7 +141454,7 @@ "id": 925, "properties": { "instrument": "guitar", - "note": "20", + "note": "18", "powered": "false" } }, @@ -137922,7 +141462,7 @@ "id": 926, "properties": { "instrument": "guitar", - "note": "21", + "note": "19", "powered": "true" } }, @@ -137930,7 +141470,7 @@ "id": 927, "properties": { "instrument": "guitar", - "note": "21", + "note": "19", "powered": "false" } }, @@ -137938,7 +141478,7 @@ "id": 928, "properties": { "instrument": "guitar", - "note": "22", + "note": "20", "powered": "true" } }, @@ -137946,7 +141486,7 @@ "id": 929, "properties": { "instrument": "guitar", - "note": "22", + "note": "20", "powered": "false" } }, @@ -137954,7 +141494,7 @@ "id": 930, "properties": { "instrument": "guitar", - "note": "23", + "note": "21", "powered": "true" } }, @@ -137962,7 +141502,7 @@ "id": 931, "properties": { "instrument": "guitar", - "note": "23", + "note": "21", "powered": "false" } }, @@ -137970,7 +141510,7 @@ "id": 932, "properties": { "instrument": "guitar", - "note": "24", + "note": "22", "powered": "true" } }, @@ -137978,39 +141518,39 @@ "id": 933, "properties": { "instrument": "guitar", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 934, "properties": { - "instrument": "chime", - "note": "0", + "instrument": "guitar", + "note": "23", "powered": "true" } }, { "id": 935, "properties": { - "instrument": "chime", - "note": "0", + "instrument": "guitar", + "note": "23", "powered": "false" } }, { "id": 936, "properties": { - "instrument": "chime", - "note": "1", + "instrument": "guitar", + "note": "24", "powered": "true" } }, { "id": 937, "properties": { - "instrument": "chime", - "note": "1", + "instrument": "guitar", + "note": "24", "powered": "false" } }, @@ -138018,7 +141558,7 @@ "id": 938, "properties": { "instrument": "chime", - "note": "2", + "note": "0", "powered": "true" } }, @@ -138026,7 +141566,7 @@ "id": 939, "properties": { "instrument": "chime", - "note": "2", + "note": "0", "powered": "false" } }, @@ -138034,7 +141574,7 @@ "id": 940, "properties": { "instrument": "chime", - "note": "3", + "note": "1", "powered": "true" } }, @@ -138042,7 +141582,7 @@ "id": 941, "properties": { "instrument": "chime", - "note": "3", + "note": "1", "powered": "false" } }, @@ -138050,7 +141590,7 @@ "id": 942, "properties": { "instrument": "chime", - "note": "4", + "note": "2", "powered": "true" } }, @@ -138058,7 +141598,7 @@ "id": 943, "properties": { "instrument": "chime", - "note": "4", + "note": "2", "powered": "false" } }, @@ -138066,7 +141606,7 @@ "id": 944, "properties": { "instrument": "chime", - "note": "5", + "note": "3", "powered": "true" } }, @@ -138074,7 +141614,7 @@ "id": 945, "properties": { "instrument": "chime", - "note": "5", + "note": "3", "powered": "false" } }, @@ -138082,7 +141622,7 @@ "id": 946, "properties": { "instrument": "chime", - "note": "6", + "note": "4", "powered": "true" } }, @@ -138090,7 +141630,7 @@ "id": 947, "properties": { "instrument": "chime", - "note": "6", + "note": "4", "powered": "false" } }, @@ -138098,7 +141638,7 @@ "id": 948, "properties": { "instrument": "chime", - "note": "7", + "note": "5", "powered": "true" } }, @@ -138106,7 +141646,7 @@ "id": 949, "properties": { "instrument": "chime", - "note": "7", + "note": "5", "powered": "false" } }, @@ -138114,7 +141654,7 @@ "id": 950, "properties": { "instrument": "chime", - "note": "8", + "note": "6", "powered": "true" } }, @@ -138122,7 +141662,7 @@ "id": 951, "properties": { "instrument": "chime", - "note": "8", + "note": "6", "powered": "false" } }, @@ -138130,7 +141670,7 @@ "id": 952, "properties": { "instrument": "chime", - "note": "9", + "note": "7", "powered": "true" } }, @@ -138138,7 +141678,7 @@ "id": 953, "properties": { "instrument": "chime", - "note": "9", + "note": "7", "powered": "false" } }, @@ -138146,7 +141686,7 @@ "id": 954, "properties": { "instrument": "chime", - "note": "10", + "note": "8", "powered": "true" } }, @@ -138154,7 +141694,7 @@ "id": 955, "properties": { "instrument": "chime", - "note": "10", + "note": "8", "powered": "false" } }, @@ -138162,7 +141702,7 @@ "id": 956, "properties": { "instrument": "chime", - "note": "11", + "note": "9", "powered": "true" } }, @@ -138170,7 +141710,7 @@ "id": 957, "properties": { "instrument": "chime", - "note": "11", + "note": "9", "powered": "false" } }, @@ -138178,7 +141718,7 @@ "id": 958, "properties": { "instrument": "chime", - "note": "12", + "note": "10", "powered": "true" } }, @@ -138186,7 +141726,7 @@ "id": 959, "properties": { "instrument": "chime", - "note": "12", + "note": "10", "powered": "false" } }, @@ -138194,7 +141734,7 @@ "id": 960, "properties": { "instrument": "chime", - "note": "13", + "note": "11", "powered": "true" } }, @@ -138202,7 +141742,7 @@ "id": 961, "properties": { "instrument": "chime", - "note": "13", + "note": "11", "powered": "false" } }, @@ -138210,7 +141750,7 @@ "id": 962, "properties": { "instrument": "chime", - "note": "14", + "note": "12", "powered": "true" } }, @@ -138218,7 +141758,7 @@ "id": 963, "properties": { "instrument": "chime", - "note": "14", + "note": "12", "powered": "false" } }, @@ -138226,7 +141766,7 @@ "id": 964, "properties": { "instrument": "chime", - "note": "15", + "note": "13", "powered": "true" } }, @@ -138234,7 +141774,7 @@ "id": 965, "properties": { "instrument": "chime", - "note": "15", + "note": "13", "powered": "false" } }, @@ -138242,7 +141782,7 @@ "id": 966, "properties": { "instrument": "chime", - "note": "16", + "note": "14", "powered": "true" } }, @@ -138250,7 +141790,7 @@ "id": 967, "properties": { "instrument": "chime", - "note": "16", + "note": "14", "powered": "false" } }, @@ -138258,7 +141798,7 @@ "id": 968, "properties": { "instrument": "chime", - "note": "17", + "note": "15", "powered": "true" } }, @@ -138266,7 +141806,7 @@ "id": 969, "properties": { "instrument": "chime", - "note": "17", + "note": "15", "powered": "false" } }, @@ -138274,7 +141814,7 @@ "id": 970, "properties": { "instrument": "chime", - "note": "18", + "note": "16", "powered": "true" } }, @@ -138282,7 +141822,7 @@ "id": 971, "properties": { "instrument": "chime", - "note": "18", + "note": "16", "powered": "false" } }, @@ -138290,7 +141830,7 @@ "id": 972, "properties": { "instrument": "chime", - "note": "19", + "note": "17", "powered": "true" } }, @@ -138298,7 +141838,7 @@ "id": 973, "properties": { "instrument": "chime", - "note": "19", + "note": "17", "powered": "false" } }, @@ -138306,7 +141846,7 @@ "id": 974, "properties": { "instrument": "chime", - "note": "20", + "note": "18", "powered": "true" } }, @@ -138314,7 +141854,7 @@ "id": 975, "properties": { "instrument": "chime", - "note": "20", + "note": "18", "powered": "false" } }, @@ -138322,7 +141862,7 @@ "id": 976, "properties": { "instrument": "chime", - "note": "21", + "note": "19", "powered": "true" } }, @@ -138330,7 +141870,7 @@ "id": 977, "properties": { "instrument": "chime", - "note": "21", + "note": "19", "powered": "false" } }, @@ -138338,7 +141878,7 @@ "id": 978, "properties": { "instrument": "chime", - "note": "22", + "note": "20", "powered": "true" } }, @@ -138346,7 +141886,7 @@ "id": 979, "properties": { "instrument": "chime", - "note": "22", + "note": "20", "powered": "false" } }, @@ -138354,7 +141894,7 @@ "id": 980, "properties": { "instrument": "chime", - "note": "23", + "note": "21", "powered": "true" } }, @@ -138362,7 +141902,7 @@ "id": 981, "properties": { "instrument": "chime", - "note": "23", + "note": "21", "powered": "false" } }, @@ -138370,7 +141910,7 @@ "id": 982, "properties": { "instrument": "chime", - "note": "24", + "note": "22", "powered": "true" } }, @@ -138378,39 +141918,39 @@ "id": 983, "properties": { "instrument": "chime", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 984, "properties": { - "instrument": "xylophone", - "note": "0", + "instrument": "chime", + "note": "23", "powered": "true" } }, { "id": 985, "properties": { - "instrument": "xylophone", - "note": "0", + "instrument": "chime", + "note": "23", "powered": "false" } }, { "id": 986, "properties": { - "instrument": "xylophone", - "note": "1", + "instrument": "chime", + "note": "24", "powered": "true" } }, { "id": 987, "properties": { - "instrument": "xylophone", - "note": "1", + "instrument": "chime", + "note": "24", "powered": "false" } }, @@ -138418,7 +141958,7 @@ "id": 988, "properties": { "instrument": "xylophone", - "note": "2", + "note": "0", "powered": "true" } }, @@ -138426,7 +141966,7 @@ "id": 989, "properties": { "instrument": "xylophone", - "note": "2", + "note": "0", "powered": "false" } }, @@ -138434,7 +141974,7 @@ "id": 990, "properties": { "instrument": "xylophone", - "note": "3", + "note": "1", "powered": "true" } }, @@ -138442,7 +141982,7 @@ "id": 991, "properties": { "instrument": "xylophone", - "note": "3", + "note": "1", "powered": "false" } }, @@ -138450,7 +141990,7 @@ "id": 992, "properties": { "instrument": "xylophone", - "note": "4", + "note": "2", "powered": "true" } }, @@ -138458,7 +141998,7 @@ "id": 993, "properties": { "instrument": "xylophone", - "note": "4", + "note": "2", "powered": "false" } }, @@ -138466,7 +142006,7 @@ "id": 994, "properties": { "instrument": "xylophone", - "note": "5", + "note": "3", "powered": "true" } }, @@ -138474,7 +142014,7 @@ "id": 995, "properties": { "instrument": "xylophone", - "note": "5", + "note": "3", "powered": "false" } }, @@ -138482,7 +142022,7 @@ "id": 996, "properties": { "instrument": "xylophone", - "note": "6", + "note": "4", "powered": "true" } }, @@ -138490,7 +142030,7 @@ "id": 997, "properties": { "instrument": "xylophone", - "note": "6", + "note": "4", "powered": "false" } }, @@ -138498,7 +142038,7 @@ "id": 998, "properties": { "instrument": "xylophone", - "note": "7", + "note": "5", "powered": "true" } }, @@ -138506,7 +142046,7 @@ "id": 999, "properties": { "instrument": "xylophone", - "note": "7", + "note": "5", "powered": "false" } }, @@ -138514,7 +142054,7 @@ "id": 1000, "properties": { "instrument": "xylophone", - "note": "8", + "note": "6", "powered": "true" } }, @@ -138522,7 +142062,7 @@ "id": 1001, "properties": { "instrument": "xylophone", - "note": "8", + "note": "6", "powered": "false" } }, @@ -138530,7 +142070,7 @@ "id": 1002, "properties": { "instrument": "xylophone", - "note": "9", + "note": "7", "powered": "true" } }, @@ -138538,7 +142078,7 @@ "id": 1003, "properties": { "instrument": "xylophone", - "note": "9", + "note": "7", "powered": "false" } }, @@ -138546,7 +142086,7 @@ "id": 1004, "properties": { "instrument": "xylophone", - "note": "10", + "note": "8", "powered": "true" } }, @@ -138554,7 +142094,7 @@ "id": 1005, "properties": { "instrument": "xylophone", - "note": "10", + "note": "8", "powered": "false" } }, @@ -138562,7 +142102,7 @@ "id": 1006, "properties": { "instrument": "xylophone", - "note": "11", + "note": "9", "powered": "true" } }, @@ -138570,7 +142110,7 @@ "id": 1007, "properties": { "instrument": "xylophone", - "note": "11", + "note": "9", "powered": "false" } }, @@ -138578,7 +142118,7 @@ "id": 1008, "properties": { "instrument": "xylophone", - "note": "12", + "note": "10", "powered": "true" } }, @@ -138586,7 +142126,7 @@ "id": 1009, "properties": { "instrument": "xylophone", - "note": "12", + "note": "10", "powered": "false" } }, @@ -138594,7 +142134,7 @@ "id": 1010, "properties": { "instrument": "xylophone", - "note": "13", + "note": "11", "powered": "true" } }, @@ -138602,7 +142142,7 @@ "id": 1011, "properties": { "instrument": "xylophone", - "note": "13", + "note": "11", "powered": "false" } }, @@ -138610,7 +142150,7 @@ "id": 1012, "properties": { "instrument": "xylophone", - "note": "14", + "note": "12", "powered": "true" } }, @@ -138618,7 +142158,7 @@ "id": 1013, "properties": { "instrument": "xylophone", - "note": "14", + "note": "12", "powered": "false" } }, @@ -138626,7 +142166,7 @@ "id": 1014, "properties": { "instrument": "xylophone", - "note": "15", + "note": "13", "powered": "true" } }, @@ -138634,7 +142174,7 @@ "id": 1015, "properties": { "instrument": "xylophone", - "note": "15", + "note": "13", "powered": "false" } }, @@ -138642,7 +142182,7 @@ "id": 1016, "properties": { "instrument": "xylophone", - "note": "16", + "note": "14", "powered": "true" } }, @@ -138650,7 +142190,7 @@ "id": 1017, "properties": { "instrument": "xylophone", - "note": "16", + "note": "14", "powered": "false" } }, @@ -138658,7 +142198,7 @@ "id": 1018, "properties": { "instrument": "xylophone", - "note": "17", + "note": "15", "powered": "true" } }, @@ -138666,7 +142206,7 @@ "id": 1019, "properties": { "instrument": "xylophone", - "note": "17", + "note": "15", "powered": "false" } }, @@ -138674,7 +142214,7 @@ "id": 1020, "properties": { "instrument": "xylophone", - "note": "18", + "note": "16", "powered": "true" } }, @@ -138682,7 +142222,7 @@ "id": 1021, "properties": { "instrument": "xylophone", - "note": "18", + "note": "16", "powered": "false" } }, @@ -138690,7 +142230,7 @@ "id": 1022, "properties": { "instrument": "xylophone", - "note": "19", + "note": "17", "powered": "true" } }, @@ -138698,7 +142238,7 @@ "id": 1023, "properties": { "instrument": "xylophone", - "note": "19", + "note": "17", "powered": "false" } }, @@ -138706,7 +142246,7 @@ "id": 1024, "properties": { "instrument": "xylophone", - "note": "20", + "note": "18", "powered": "true" } }, @@ -138714,7 +142254,7 @@ "id": 1025, "properties": { "instrument": "xylophone", - "note": "20", + "note": "18", "powered": "false" } }, @@ -138722,7 +142262,7 @@ "id": 1026, "properties": { "instrument": "xylophone", - "note": "21", + "note": "19", "powered": "true" } }, @@ -138730,7 +142270,7 @@ "id": 1027, "properties": { "instrument": "xylophone", - "note": "21", + "note": "19", "powered": "false" } }, @@ -138738,7 +142278,7 @@ "id": 1028, "properties": { "instrument": "xylophone", - "note": "22", + "note": "20", "powered": "true" } }, @@ -138746,7 +142286,7 @@ "id": 1029, "properties": { "instrument": "xylophone", - "note": "22", + "note": "20", "powered": "false" } }, @@ -138754,7 +142294,7 @@ "id": 1030, "properties": { "instrument": "xylophone", - "note": "23", + "note": "21", "powered": "true" } }, @@ -138762,7 +142302,7 @@ "id": 1031, "properties": { "instrument": "xylophone", - "note": "23", + "note": "21", "powered": "false" } }, @@ -138770,7 +142310,7 @@ "id": 1032, "properties": { "instrument": "xylophone", - "note": "24", + "note": "22", "powered": "true" } }, @@ -138778,39 +142318,39 @@ "id": 1033, "properties": { "instrument": "xylophone", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1034, "properties": { - "instrument": "iron_xylophone", - "note": "0", + "instrument": "xylophone", + "note": "23", "powered": "true" } }, { "id": 1035, "properties": { - "instrument": "iron_xylophone", - "note": "0", + "instrument": "xylophone", + "note": "23", "powered": "false" } }, { "id": 1036, "properties": { - "instrument": "iron_xylophone", - "note": "1", + "instrument": "xylophone", + "note": "24", "powered": "true" } }, { "id": 1037, "properties": { - "instrument": "iron_xylophone", - "note": "1", + "instrument": "xylophone", + "note": "24", "powered": "false" } }, @@ -138818,7 +142358,7 @@ "id": 1038, "properties": { "instrument": "iron_xylophone", - "note": "2", + "note": "0", "powered": "true" } }, @@ -138826,7 +142366,7 @@ "id": 1039, "properties": { "instrument": "iron_xylophone", - "note": "2", + "note": "0", "powered": "false" } }, @@ -138834,7 +142374,7 @@ "id": 1040, "properties": { "instrument": "iron_xylophone", - "note": "3", + "note": "1", "powered": "true" } }, @@ -138842,7 +142382,7 @@ "id": 1041, "properties": { "instrument": "iron_xylophone", - "note": "3", + "note": "1", "powered": "false" } }, @@ -138850,7 +142390,7 @@ "id": 1042, "properties": { "instrument": "iron_xylophone", - "note": "4", + "note": "2", "powered": "true" } }, @@ -138858,7 +142398,7 @@ "id": 1043, "properties": { "instrument": "iron_xylophone", - "note": "4", + "note": "2", "powered": "false" } }, @@ -138866,7 +142406,7 @@ "id": 1044, "properties": { "instrument": "iron_xylophone", - "note": "5", + "note": "3", "powered": "true" } }, @@ -138874,7 +142414,7 @@ "id": 1045, "properties": { "instrument": "iron_xylophone", - "note": "5", + "note": "3", "powered": "false" } }, @@ -138882,7 +142422,7 @@ "id": 1046, "properties": { "instrument": "iron_xylophone", - "note": "6", + "note": "4", "powered": "true" } }, @@ -138890,7 +142430,7 @@ "id": 1047, "properties": { "instrument": "iron_xylophone", - "note": "6", + "note": "4", "powered": "false" } }, @@ -138898,7 +142438,7 @@ "id": 1048, "properties": { "instrument": "iron_xylophone", - "note": "7", + "note": "5", "powered": "true" } }, @@ -138906,7 +142446,7 @@ "id": 1049, "properties": { "instrument": "iron_xylophone", - "note": "7", + "note": "5", "powered": "false" } }, @@ -138914,7 +142454,7 @@ "id": 1050, "properties": { "instrument": "iron_xylophone", - "note": "8", + "note": "6", "powered": "true" } }, @@ -138922,7 +142462,7 @@ "id": 1051, "properties": { "instrument": "iron_xylophone", - "note": "8", + "note": "6", "powered": "false" } }, @@ -138930,7 +142470,7 @@ "id": 1052, "properties": { "instrument": "iron_xylophone", - "note": "9", + "note": "7", "powered": "true" } }, @@ -138938,7 +142478,7 @@ "id": 1053, "properties": { "instrument": "iron_xylophone", - "note": "9", + "note": "7", "powered": "false" } }, @@ -138946,7 +142486,7 @@ "id": 1054, "properties": { "instrument": "iron_xylophone", - "note": "10", + "note": "8", "powered": "true" } }, @@ -138954,7 +142494,7 @@ "id": 1055, "properties": { "instrument": "iron_xylophone", - "note": "10", + "note": "8", "powered": "false" } }, @@ -138962,7 +142502,7 @@ "id": 1056, "properties": { "instrument": "iron_xylophone", - "note": "11", + "note": "9", "powered": "true" } }, @@ -138970,7 +142510,7 @@ "id": 1057, "properties": { "instrument": "iron_xylophone", - "note": "11", + "note": "9", "powered": "false" } }, @@ -138978,7 +142518,7 @@ "id": 1058, "properties": { "instrument": "iron_xylophone", - "note": "12", + "note": "10", "powered": "true" } }, @@ -138986,7 +142526,7 @@ "id": 1059, "properties": { "instrument": "iron_xylophone", - "note": "12", + "note": "10", "powered": "false" } }, @@ -138994,7 +142534,7 @@ "id": 1060, "properties": { "instrument": "iron_xylophone", - "note": "13", + "note": "11", "powered": "true" } }, @@ -139002,7 +142542,7 @@ "id": 1061, "properties": { "instrument": "iron_xylophone", - "note": "13", + "note": "11", "powered": "false" } }, @@ -139010,7 +142550,7 @@ "id": 1062, "properties": { "instrument": "iron_xylophone", - "note": "14", + "note": "12", "powered": "true" } }, @@ -139018,7 +142558,7 @@ "id": 1063, "properties": { "instrument": "iron_xylophone", - "note": "14", + "note": "12", "powered": "false" } }, @@ -139026,7 +142566,7 @@ "id": 1064, "properties": { "instrument": "iron_xylophone", - "note": "15", + "note": "13", "powered": "true" } }, @@ -139034,7 +142574,7 @@ "id": 1065, "properties": { "instrument": "iron_xylophone", - "note": "15", + "note": "13", "powered": "false" } }, @@ -139042,7 +142582,7 @@ "id": 1066, "properties": { "instrument": "iron_xylophone", - "note": "16", + "note": "14", "powered": "true" } }, @@ -139050,7 +142590,7 @@ "id": 1067, "properties": { "instrument": "iron_xylophone", - "note": "16", + "note": "14", "powered": "false" } }, @@ -139058,7 +142598,7 @@ "id": 1068, "properties": { "instrument": "iron_xylophone", - "note": "17", + "note": "15", "powered": "true" } }, @@ -139066,7 +142606,7 @@ "id": 1069, "properties": { "instrument": "iron_xylophone", - "note": "17", + "note": "15", "powered": "false" } }, @@ -139074,7 +142614,7 @@ "id": 1070, "properties": { "instrument": "iron_xylophone", - "note": "18", + "note": "16", "powered": "true" } }, @@ -139082,7 +142622,7 @@ "id": 1071, "properties": { "instrument": "iron_xylophone", - "note": "18", + "note": "16", "powered": "false" } }, @@ -139090,7 +142630,7 @@ "id": 1072, "properties": { "instrument": "iron_xylophone", - "note": "19", + "note": "17", "powered": "true" } }, @@ -139098,7 +142638,7 @@ "id": 1073, "properties": { "instrument": "iron_xylophone", - "note": "19", + "note": "17", "powered": "false" } }, @@ -139106,7 +142646,7 @@ "id": 1074, "properties": { "instrument": "iron_xylophone", - "note": "20", + "note": "18", "powered": "true" } }, @@ -139114,7 +142654,7 @@ "id": 1075, "properties": { "instrument": "iron_xylophone", - "note": "20", + "note": "18", "powered": "false" } }, @@ -139122,7 +142662,7 @@ "id": 1076, "properties": { "instrument": "iron_xylophone", - "note": "21", + "note": "19", "powered": "true" } }, @@ -139130,7 +142670,7 @@ "id": 1077, "properties": { "instrument": "iron_xylophone", - "note": "21", + "note": "19", "powered": "false" } }, @@ -139138,7 +142678,7 @@ "id": 1078, "properties": { "instrument": "iron_xylophone", - "note": "22", + "note": "20", "powered": "true" } }, @@ -139146,7 +142686,7 @@ "id": 1079, "properties": { "instrument": "iron_xylophone", - "note": "22", + "note": "20", "powered": "false" } }, @@ -139154,7 +142694,7 @@ "id": 1080, "properties": { "instrument": "iron_xylophone", - "note": "23", + "note": "21", "powered": "true" } }, @@ -139162,7 +142702,7 @@ "id": 1081, "properties": { "instrument": "iron_xylophone", - "note": "23", + "note": "21", "powered": "false" } }, @@ -139170,7 +142710,7 @@ "id": 1082, "properties": { "instrument": "iron_xylophone", - "note": "24", + "note": "22", "powered": "true" } }, @@ -139178,39 +142718,39 @@ "id": 1083, "properties": { "instrument": "iron_xylophone", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1084, "properties": { - "instrument": "cow_bell", - "note": "0", + "instrument": "iron_xylophone", + "note": "23", "powered": "true" } }, { "id": 1085, "properties": { - "instrument": "cow_bell", - "note": "0", + "instrument": "iron_xylophone", + "note": "23", "powered": "false" } }, { "id": 1086, "properties": { - "instrument": "cow_bell", - "note": "1", + "instrument": "iron_xylophone", + "note": "24", "powered": "true" } }, { "id": 1087, "properties": { - "instrument": "cow_bell", - "note": "1", + "instrument": "iron_xylophone", + "note": "24", "powered": "false" } }, @@ -139218,7 +142758,7 @@ "id": 1088, "properties": { "instrument": "cow_bell", - "note": "2", + "note": "0", "powered": "true" } }, @@ -139226,7 +142766,7 @@ "id": 1089, "properties": { "instrument": "cow_bell", - "note": "2", + "note": "0", "powered": "false" } }, @@ -139234,7 +142774,7 @@ "id": 1090, "properties": { "instrument": "cow_bell", - "note": "3", + "note": "1", "powered": "true" } }, @@ -139242,7 +142782,7 @@ "id": 1091, "properties": { "instrument": "cow_bell", - "note": "3", + "note": "1", "powered": "false" } }, @@ -139250,7 +142790,7 @@ "id": 1092, "properties": { "instrument": "cow_bell", - "note": "4", + "note": "2", "powered": "true" } }, @@ -139258,7 +142798,7 @@ "id": 1093, "properties": { "instrument": "cow_bell", - "note": "4", + "note": "2", "powered": "false" } }, @@ -139266,7 +142806,7 @@ "id": 1094, "properties": { "instrument": "cow_bell", - "note": "5", + "note": "3", "powered": "true" } }, @@ -139274,7 +142814,7 @@ "id": 1095, "properties": { "instrument": "cow_bell", - "note": "5", + "note": "3", "powered": "false" } }, @@ -139282,7 +142822,7 @@ "id": 1096, "properties": { "instrument": "cow_bell", - "note": "6", + "note": "4", "powered": "true" } }, @@ -139290,7 +142830,7 @@ "id": 1097, "properties": { "instrument": "cow_bell", - "note": "6", + "note": "4", "powered": "false" } }, @@ -139298,7 +142838,7 @@ "id": 1098, "properties": { "instrument": "cow_bell", - "note": "7", + "note": "5", "powered": "true" } }, @@ -139306,7 +142846,7 @@ "id": 1099, "properties": { "instrument": "cow_bell", - "note": "7", + "note": "5", "powered": "false" } }, @@ -139314,7 +142854,7 @@ "id": 1100, "properties": { "instrument": "cow_bell", - "note": "8", + "note": "6", "powered": "true" } }, @@ -139322,7 +142862,7 @@ "id": 1101, "properties": { "instrument": "cow_bell", - "note": "8", + "note": "6", "powered": "false" } }, @@ -139330,7 +142870,7 @@ "id": 1102, "properties": { "instrument": "cow_bell", - "note": "9", + "note": "7", "powered": "true" } }, @@ -139338,7 +142878,7 @@ "id": 1103, "properties": { "instrument": "cow_bell", - "note": "9", + "note": "7", "powered": "false" } }, @@ -139346,7 +142886,7 @@ "id": 1104, "properties": { "instrument": "cow_bell", - "note": "10", + "note": "8", "powered": "true" } }, @@ -139354,7 +142894,7 @@ "id": 1105, "properties": { "instrument": "cow_bell", - "note": "10", + "note": "8", "powered": "false" } }, @@ -139362,7 +142902,7 @@ "id": 1106, "properties": { "instrument": "cow_bell", - "note": "11", + "note": "9", "powered": "true" } }, @@ -139370,7 +142910,7 @@ "id": 1107, "properties": { "instrument": "cow_bell", - "note": "11", + "note": "9", "powered": "false" } }, @@ -139378,7 +142918,7 @@ "id": 1108, "properties": { "instrument": "cow_bell", - "note": "12", + "note": "10", "powered": "true" } }, @@ -139386,7 +142926,7 @@ "id": 1109, "properties": { "instrument": "cow_bell", - "note": "12", + "note": "10", "powered": "false" } }, @@ -139394,7 +142934,7 @@ "id": 1110, "properties": { "instrument": "cow_bell", - "note": "13", + "note": "11", "powered": "true" } }, @@ -139402,7 +142942,7 @@ "id": 1111, "properties": { "instrument": "cow_bell", - "note": "13", + "note": "11", "powered": "false" } }, @@ -139410,7 +142950,7 @@ "id": 1112, "properties": { "instrument": "cow_bell", - "note": "14", + "note": "12", "powered": "true" } }, @@ -139418,7 +142958,7 @@ "id": 1113, "properties": { "instrument": "cow_bell", - "note": "14", + "note": "12", "powered": "false" } }, @@ -139426,7 +142966,7 @@ "id": 1114, "properties": { "instrument": "cow_bell", - "note": "15", + "note": "13", "powered": "true" } }, @@ -139434,7 +142974,7 @@ "id": 1115, "properties": { "instrument": "cow_bell", - "note": "15", + "note": "13", "powered": "false" } }, @@ -139442,7 +142982,7 @@ "id": 1116, "properties": { "instrument": "cow_bell", - "note": "16", + "note": "14", "powered": "true" } }, @@ -139450,7 +142990,7 @@ "id": 1117, "properties": { "instrument": "cow_bell", - "note": "16", + "note": "14", "powered": "false" } }, @@ -139458,7 +142998,7 @@ "id": 1118, "properties": { "instrument": "cow_bell", - "note": "17", + "note": "15", "powered": "true" } }, @@ -139466,7 +143006,7 @@ "id": 1119, "properties": { "instrument": "cow_bell", - "note": "17", + "note": "15", "powered": "false" } }, @@ -139474,7 +143014,7 @@ "id": 1120, "properties": { "instrument": "cow_bell", - "note": "18", + "note": "16", "powered": "true" } }, @@ -139482,7 +143022,7 @@ "id": 1121, "properties": { "instrument": "cow_bell", - "note": "18", + "note": "16", "powered": "false" } }, @@ -139490,7 +143030,7 @@ "id": 1122, "properties": { "instrument": "cow_bell", - "note": "19", + "note": "17", "powered": "true" } }, @@ -139498,7 +143038,7 @@ "id": 1123, "properties": { "instrument": "cow_bell", - "note": "19", + "note": "17", "powered": "false" } }, @@ -139506,7 +143046,7 @@ "id": 1124, "properties": { "instrument": "cow_bell", - "note": "20", + "note": "18", "powered": "true" } }, @@ -139514,7 +143054,7 @@ "id": 1125, "properties": { "instrument": "cow_bell", - "note": "20", + "note": "18", "powered": "false" } }, @@ -139522,7 +143062,7 @@ "id": 1126, "properties": { "instrument": "cow_bell", - "note": "21", + "note": "19", "powered": "true" } }, @@ -139530,7 +143070,7 @@ "id": 1127, "properties": { "instrument": "cow_bell", - "note": "21", + "note": "19", "powered": "false" } }, @@ -139538,7 +143078,7 @@ "id": 1128, "properties": { "instrument": "cow_bell", - "note": "22", + "note": "20", "powered": "true" } }, @@ -139546,7 +143086,7 @@ "id": 1129, "properties": { "instrument": "cow_bell", - "note": "22", + "note": "20", "powered": "false" } }, @@ -139554,7 +143094,7 @@ "id": 1130, "properties": { "instrument": "cow_bell", - "note": "23", + "note": "21", "powered": "true" } }, @@ -139562,7 +143102,7 @@ "id": 1131, "properties": { "instrument": "cow_bell", - "note": "23", + "note": "21", "powered": "false" } }, @@ -139570,7 +143110,7 @@ "id": 1132, "properties": { "instrument": "cow_bell", - "note": "24", + "note": "22", "powered": "true" } }, @@ -139578,39 +143118,39 @@ "id": 1133, "properties": { "instrument": "cow_bell", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1134, "properties": { - "instrument": "didgeridoo", - "note": "0", + "instrument": "cow_bell", + "note": "23", "powered": "true" } }, { "id": 1135, "properties": { - "instrument": "didgeridoo", - "note": "0", + "instrument": "cow_bell", + "note": "23", "powered": "false" } }, { "id": 1136, "properties": { - "instrument": "didgeridoo", - "note": "1", + "instrument": "cow_bell", + "note": "24", "powered": "true" } }, { "id": 1137, "properties": { - "instrument": "didgeridoo", - "note": "1", + "instrument": "cow_bell", + "note": "24", "powered": "false" } }, @@ -139618,7 +143158,7 @@ "id": 1138, "properties": { "instrument": "didgeridoo", - "note": "2", + "note": "0", "powered": "true" } }, @@ -139626,7 +143166,7 @@ "id": 1139, "properties": { "instrument": "didgeridoo", - "note": "2", + "note": "0", "powered": "false" } }, @@ -139634,7 +143174,7 @@ "id": 1140, "properties": { "instrument": "didgeridoo", - "note": "3", + "note": "1", "powered": "true" } }, @@ -139642,7 +143182,7 @@ "id": 1141, "properties": { "instrument": "didgeridoo", - "note": "3", + "note": "1", "powered": "false" } }, @@ -139650,7 +143190,7 @@ "id": 1142, "properties": { "instrument": "didgeridoo", - "note": "4", + "note": "2", "powered": "true" } }, @@ -139658,7 +143198,7 @@ "id": 1143, "properties": { "instrument": "didgeridoo", - "note": "4", + "note": "2", "powered": "false" } }, @@ -139666,7 +143206,7 @@ "id": 1144, "properties": { "instrument": "didgeridoo", - "note": "5", + "note": "3", "powered": "true" } }, @@ -139674,7 +143214,7 @@ "id": 1145, "properties": { "instrument": "didgeridoo", - "note": "5", + "note": "3", "powered": "false" } }, @@ -139682,7 +143222,7 @@ "id": 1146, "properties": { "instrument": "didgeridoo", - "note": "6", + "note": "4", "powered": "true" } }, @@ -139690,7 +143230,7 @@ "id": 1147, "properties": { "instrument": "didgeridoo", - "note": "6", + "note": "4", "powered": "false" } }, @@ -139698,7 +143238,7 @@ "id": 1148, "properties": { "instrument": "didgeridoo", - "note": "7", + "note": "5", "powered": "true" } }, @@ -139706,7 +143246,7 @@ "id": 1149, "properties": { "instrument": "didgeridoo", - "note": "7", + "note": "5", "powered": "false" } }, @@ -139714,7 +143254,7 @@ "id": 1150, "properties": { "instrument": "didgeridoo", - "note": "8", + "note": "6", "powered": "true" } }, @@ -139722,7 +143262,7 @@ "id": 1151, "properties": { "instrument": "didgeridoo", - "note": "8", + "note": "6", "powered": "false" } }, @@ -139730,7 +143270,7 @@ "id": 1152, "properties": { "instrument": "didgeridoo", - "note": "9", + "note": "7", "powered": "true" } }, @@ -139738,7 +143278,7 @@ "id": 1153, "properties": { "instrument": "didgeridoo", - "note": "9", + "note": "7", "powered": "false" } }, @@ -139746,7 +143286,7 @@ "id": 1154, "properties": { "instrument": "didgeridoo", - "note": "10", + "note": "8", "powered": "true" } }, @@ -139754,7 +143294,7 @@ "id": 1155, "properties": { "instrument": "didgeridoo", - "note": "10", + "note": "8", "powered": "false" } }, @@ -139762,7 +143302,7 @@ "id": 1156, "properties": { "instrument": "didgeridoo", - "note": "11", + "note": "9", "powered": "true" } }, @@ -139770,7 +143310,7 @@ "id": 1157, "properties": { "instrument": "didgeridoo", - "note": "11", + "note": "9", "powered": "false" } }, @@ -139778,7 +143318,7 @@ "id": 1158, "properties": { "instrument": "didgeridoo", - "note": "12", + "note": "10", "powered": "true" } }, @@ -139786,7 +143326,7 @@ "id": 1159, "properties": { "instrument": "didgeridoo", - "note": "12", + "note": "10", "powered": "false" } }, @@ -139794,7 +143334,7 @@ "id": 1160, "properties": { "instrument": "didgeridoo", - "note": "13", + "note": "11", "powered": "true" } }, @@ -139802,7 +143342,7 @@ "id": 1161, "properties": { "instrument": "didgeridoo", - "note": "13", + "note": "11", "powered": "false" } }, @@ -139810,7 +143350,7 @@ "id": 1162, "properties": { "instrument": "didgeridoo", - "note": "14", + "note": "12", "powered": "true" } }, @@ -139818,7 +143358,7 @@ "id": 1163, "properties": { "instrument": "didgeridoo", - "note": "14", + "note": "12", "powered": "false" } }, @@ -139826,7 +143366,7 @@ "id": 1164, "properties": { "instrument": "didgeridoo", - "note": "15", + "note": "13", "powered": "true" } }, @@ -139834,7 +143374,7 @@ "id": 1165, "properties": { "instrument": "didgeridoo", - "note": "15", + "note": "13", "powered": "false" } }, @@ -139842,7 +143382,7 @@ "id": 1166, "properties": { "instrument": "didgeridoo", - "note": "16", + "note": "14", "powered": "true" } }, @@ -139850,7 +143390,7 @@ "id": 1167, "properties": { "instrument": "didgeridoo", - "note": "16", + "note": "14", "powered": "false" } }, @@ -139858,7 +143398,7 @@ "id": 1168, "properties": { "instrument": "didgeridoo", - "note": "17", + "note": "15", "powered": "true" } }, @@ -139866,7 +143406,7 @@ "id": 1169, "properties": { "instrument": "didgeridoo", - "note": "17", + "note": "15", "powered": "false" } }, @@ -139874,7 +143414,7 @@ "id": 1170, "properties": { "instrument": "didgeridoo", - "note": "18", + "note": "16", "powered": "true" } }, @@ -139882,7 +143422,7 @@ "id": 1171, "properties": { "instrument": "didgeridoo", - "note": "18", + "note": "16", "powered": "false" } }, @@ -139890,7 +143430,7 @@ "id": 1172, "properties": { "instrument": "didgeridoo", - "note": "19", + "note": "17", "powered": "true" } }, @@ -139898,7 +143438,7 @@ "id": 1173, "properties": { "instrument": "didgeridoo", - "note": "19", + "note": "17", "powered": "false" } }, @@ -139906,7 +143446,7 @@ "id": 1174, "properties": { "instrument": "didgeridoo", - "note": "20", + "note": "18", "powered": "true" } }, @@ -139914,7 +143454,7 @@ "id": 1175, "properties": { "instrument": "didgeridoo", - "note": "20", + "note": "18", "powered": "false" } }, @@ -139922,7 +143462,7 @@ "id": 1176, "properties": { "instrument": "didgeridoo", - "note": "21", + "note": "19", "powered": "true" } }, @@ -139930,7 +143470,7 @@ "id": 1177, "properties": { "instrument": "didgeridoo", - "note": "21", + "note": "19", "powered": "false" } }, @@ -139938,7 +143478,7 @@ "id": 1178, "properties": { "instrument": "didgeridoo", - "note": "22", + "note": "20", "powered": "true" } }, @@ -139946,7 +143486,7 @@ "id": 1179, "properties": { "instrument": "didgeridoo", - "note": "22", + "note": "20", "powered": "false" } }, @@ -139954,7 +143494,7 @@ "id": 1180, "properties": { "instrument": "didgeridoo", - "note": "23", + "note": "21", "powered": "true" } }, @@ -139962,7 +143502,7 @@ "id": 1181, "properties": { "instrument": "didgeridoo", - "note": "23", + "note": "21", "powered": "false" } }, @@ -139970,7 +143510,7 @@ "id": 1182, "properties": { "instrument": "didgeridoo", - "note": "24", + "note": "22", "powered": "true" } }, @@ -139978,39 +143518,39 @@ "id": 1183, "properties": { "instrument": "didgeridoo", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1184, "properties": { - "instrument": "bit", - "note": "0", + "instrument": "didgeridoo", + "note": "23", "powered": "true" } }, { "id": 1185, "properties": { - "instrument": "bit", - "note": "0", + "instrument": "didgeridoo", + "note": "23", "powered": "false" } }, { "id": 1186, "properties": { - "instrument": "bit", - "note": "1", + "instrument": "didgeridoo", + "note": "24", "powered": "true" } }, { "id": 1187, "properties": { - "instrument": "bit", - "note": "1", + "instrument": "didgeridoo", + "note": "24", "powered": "false" } }, @@ -140018,7 +143558,7 @@ "id": 1188, "properties": { "instrument": "bit", - "note": "2", + "note": "0", "powered": "true" } }, @@ -140026,7 +143566,7 @@ "id": 1189, "properties": { "instrument": "bit", - "note": "2", + "note": "0", "powered": "false" } }, @@ -140034,7 +143574,7 @@ "id": 1190, "properties": { "instrument": "bit", - "note": "3", + "note": "1", "powered": "true" } }, @@ -140042,7 +143582,7 @@ "id": 1191, "properties": { "instrument": "bit", - "note": "3", + "note": "1", "powered": "false" } }, @@ -140050,7 +143590,7 @@ "id": 1192, "properties": { "instrument": "bit", - "note": "4", + "note": "2", "powered": "true" } }, @@ -140058,7 +143598,7 @@ "id": 1193, "properties": { "instrument": "bit", - "note": "4", + "note": "2", "powered": "false" } }, @@ -140066,7 +143606,7 @@ "id": 1194, "properties": { "instrument": "bit", - "note": "5", + "note": "3", "powered": "true" } }, @@ -140074,7 +143614,7 @@ "id": 1195, "properties": { "instrument": "bit", - "note": "5", + "note": "3", "powered": "false" } }, @@ -140082,7 +143622,7 @@ "id": 1196, "properties": { "instrument": "bit", - "note": "6", + "note": "4", "powered": "true" } }, @@ -140090,7 +143630,7 @@ "id": 1197, "properties": { "instrument": "bit", - "note": "6", + "note": "4", "powered": "false" } }, @@ -140098,7 +143638,7 @@ "id": 1198, "properties": { "instrument": "bit", - "note": "7", + "note": "5", "powered": "true" } }, @@ -140106,7 +143646,7 @@ "id": 1199, "properties": { "instrument": "bit", - "note": "7", + "note": "5", "powered": "false" } }, @@ -140114,7 +143654,7 @@ "id": 1200, "properties": { "instrument": "bit", - "note": "8", + "note": "6", "powered": "true" } }, @@ -140122,7 +143662,7 @@ "id": 1201, "properties": { "instrument": "bit", - "note": "8", + "note": "6", "powered": "false" } }, @@ -140130,7 +143670,7 @@ "id": 1202, "properties": { "instrument": "bit", - "note": "9", + "note": "7", "powered": "true" } }, @@ -140138,7 +143678,7 @@ "id": 1203, "properties": { "instrument": "bit", - "note": "9", + "note": "7", "powered": "false" } }, @@ -140146,7 +143686,7 @@ "id": 1204, "properties": { "instrument": "bit", - "note": "10", + "note": "8", "powered": "true" } }, @@ -140154,7 +143694,7 @@ "id": 1205, "properties": { "instrument": "bit", - "note": "10", + "note": "8", "powered": "false" } }, @@ -140162,7 +143702,7 @@ "id": 1206, "properties": { "instrument": "bit", - "note": "11", + "note": "9", "powered": "true" } }, @@ -140170,7 +143710,7 @@ "id": 1207, "properties": { "instrument": "bit", - "note": "11", + "note": "9", "powered": "false" } }, @@ -140178,7 +143718,7 @@ "id": 1208, "properties": { "instrument": "bit", - "note": "12", + "note": "10", "powered": "true" } }, @@ -140186,7 +143726,7 @@ "id": 1209, "properties": { "instrument": "bit", - "note": "12", + "note": "10", "powered": "false" } }, @@ -140194,7 +143734,7 @@ "id": 1210, "properties": { "instrument": "bit", - "note": "13", + "note": "11", "powered": "true" } }, @@ -140202,7 +143742,7 @@ "id": 1211, "properties": { "instrument": "bit", - "note": "13", + "note": "11", "powered": "false" } }, @@ -140210,7 +143750,7 @@ "id": 1212, "properties": { "instrument": "bit", - "note": "14", + "note": "12", "powered": "true" } }, @@ -140218,7 +143758,7 @@ "id": 1213, "properties": { "instrument": "bit", - "note": "14", + "note": "12", "powered": "false" } }, @@ -140226,7 +143766,7 @@ "id": 1214, "properties": { "instrument": "bit", - "note": "15", + "note": "13", "powered": "true" } }, @@ -140234,7 +143774,7 @@ "id": 1215, "properties": { "instrument": "bit", - "note": "15", + "note": "13", "powered": "false" } }, @@ -140242,7 +143782,7 @@ "id": 1216, "properties": { "instrument": "bit", - "note": "16", + "note": "14", "powered": "true" } }, @@ -140250,7 +143790,7 @@ "id": 1217, "properties": { "instrument": "bit", - "note": "16", + "note": "14", "powered": "false" } }, @@ -140258,7 +143798,7 @@ "id": 1218, "properties": { "instrument": "bit", - "note": "17", + "note": "15", "powered": "true" } }, @@ -140266,7 +143806,7 @@ "id": 1219, "properties": { "instrument": "bit", - "note": "17", + "note": "15", "powered": "false" } }, @@ -140274,7 +143814,7 @@ "id": 1220, "properties": { "instrument": "bit", - "note": "18", + "note": "16", "powered": "true" } }, @@ -140282,7 +143822,7 @@ "id": 1221, "properties": { "instrument": "bit", - "note": "18", + "note": "16", "powered": "false" } }, @@ -140290,7 +143830,7 @@ "id": 1222, "properties": { "instrument": "bit", - "note": "19", + "note": "17", "powered": "true" } }, @@ -140298,7 +143838,7 @@ "id": 1223, "properties": { "instrument": "bit", - "note": "19", + "note": "17", "powered": "false" } }, @@ -140306,7 +143846,7 @@ "id": 1224, "properties": { "instrument": "bit", - "note": "20", + "note": "18", "powered": "true" } }, @@ -140314,7 +143854,7 @@ "id": 1225, "properties": { "instrument": "bit", - "note": "20", + "note": "18", "powered": "false" } }, @@ -140322,7 +143862,7 @@ "id": 1226, "properties": { "instrument": "bit", - "note": "21", + "note": "19", "powered": "true" } }, @@ -140330,7 +143870,7 @@ "id": 1227, "properties": { "instrument": "bit", - "note": "21", + "note": "19", "powered": "false" } }, @@ -140338,7 +143878,7 @@ "id": 1228, "properties": { "instrument": "bit", - "note": "22", + "note": "20", "powered": "true" } }, @@ -140346,7 +143886,7 @@ "id": 1229, "properties": { "instrument": "bit", - "note": "22", + "note": "20", "powered": "false" } }, @@ -140354,7 +143894,7 @@ "id": 1230, "properties": { "instrument": "bit", - "note": "23", + "note": "21", "powered": "true" } }, @@ -140362,7 +143902,7 @@ "id": 1231, "properties": { "instrument": "bit", - "note": "23", + "note": "21", "powered": "false" } }, @@ -140370,7 +143910,7 @@ "id": 1232, "properties": { "instrument": "bit", - "note": "24", + "note": "22", "powered": "true" } }, @@ -140378,39 +143918,39 @@ "id": 1233, "properties": { "instrument": "bit", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1234, "properties": { - "instrument": "banjo", - "note": "0", + "instrument": "bit", + "note": "23", "powered": "true" } }, { "id": 1235, "properties": { - "instrument": "banjo", - "note": "0", + "instrument": "bit", + "note": "23", "powered": "false" } }, { "id": 1236, "properties": { - "instrument": "banjo", - "note": "1", + "instrument": "bit", + "note": "24", "powered": "true" } }, { "id": 1237, "properties": { - "instrument": "banjo", - "note": "1", + "instrument": "bit", + "note": "24", "powered": "false" } }, @@ -140418,7 +143958,7 @@ "id": 1238, "properties": { "instrument": "banjo", - "note": "2", + "note": "0", "powered": "true" } }, @@ -140426,7 +143966,7 @@ "id": 1239, "properties": { "instrument": "banjo", - "note": "2", + "note": "0", "powered": "false" } }, @@ -140434,7 +143974,7 @@ "id": 1240, "properties": { "instrument": "banjo", - "note": "3", + "note": "1", "powered": "true" } }, @@ -140442,7 +143982,7 @@ "id": 1241, "properties": { "instrument": "banjo", - "note": "3", + "note": "1", "powered": "false" } }, @@ -140450,7 +143990,7 @@ "id": 1242, "properties": { "instrument": "banjo", - "note": "4", + "note": "2", "powered": "true" } }, @@ -140458,7 +143998,7 @@ "id": 1243, "properties": { "instrument": "banjo", - "note": "4", + "note": "2", "powered": "false" } }, @@ -140466,7 +144006,7 @@ "id": 1244, "properties": { "instrument": "banjo", - "note": "5", + "note": "3", "powered": "true" } }, @@ -140474,7 +144014,7 @@ "id": 1245, "properties": { "instrument": "banjo", - "note": "5", + "note": "3", "powered": "false" } }, @@ -140482,7 +144022,7 @@ "id": 1246, "properties": { "instrument": "banjo", - "note": "6", + "note": "4", "powered": "true" } }, @@ -140490,7 +144030,7 @@ "id": 1247, "properties": { "instrument": "banjo", - "note": "6", + "note": "4", "powered": "false" } }, @@ -140498,7 +144038,7 @@ "id": 1248, "properties": { "instrument": "banjo", - "note": "7", + "note": "5", "powered": "true" } }, @@ -140506,7 +144046,7 @@ "id": 1249, "properties": { "instrument": "banjo", - "note": "7", + "note": "5", "powered": "false" } }, @@ -140514,7 +144054,7 @@ "id": 1250, "properties": { "instrument": "banjo", - "note": "8", + "note": "6", "powered": "true" } }, @@ -140522,7 +144062,7 @@ "id": 1251, "properties": { "instrument": "banjo", - "note": "8", + "note": "6", "powered": "false" } }, @@ -140530,7 +144070,7 @@ "id": 1252, "properties": { "instrument": "banjo", - "note": "9", + "note": "7", "powered": "true" } }, @@ -140538,7 +144078,7 @@ "id": 1253, "properties": { "instrument": "banjo", - "note": "9", + "note": "7", "powered": "false" } }, @@ -140546,7 +144086,7 @@ "id": 1254, "properties": { "instrument": "banjo", - "note": "10", + "note": "8", "powered": "true" } }, @@ -140554,7 +144094,7 @@ "id": 1255, "properties": { "instrument": "banjo", - "note": "10", + "note": "8", "powered": "false" } }, @@ -140562,7 +144102,7 @@ "id": 1256, "properties": { "instrument": "banjo", - "note": "11", + "note": "9", "powered": "true" } }, @@ -140570,7 +144110,7 @@ "id": 1257, "properties": { "instrument": "banjo", - "note": "11", + "note": "9", "powered": "false" } }, @@ -140578,7 +144118,7 @@ "id": 1258, "properties": { "instrument": "banjo", - "note": "12", + "note": "10", "powered": "true" } }, @@ -140586,7 +144126,7 @@ "id": 1259, "properties": { "instrument": "banjo", - "note": "12", + "note": "10", "powered": "false" } }, @@ -140594,7 +144134,7 @@ "id": 1260, "properties": { "instrument": "banjo", - "note": "13", + "note": "11", "powered": "true" } }, @@ -140602,7 +144142,7 @@ "id": 1261, "properties": { "instrument": "banjo", - "note": "13", + "note": "11", "powered": "false" } }, @@ -140610,7 +144150,7 @@ "id": 1262, "properties": { "instrument": "banjo", - "note": "14", + "note": "12", "powered": "true" } }, @@ -140618,7 +144158,7 @@ "id": 1263, "properties": { "instrument": "banjo", - "note": "14", + "note": "12", "powered": "false" } }, @@ -140626,7 +144166,7 @@ "id": 1264, "properties": { "instrument": "banjo", - "note": "15", + "note": "13", "powered": "true" } }, @@ -140634,7 +144174,7 @@ "id": 1265, "properties": { "instrument": "banjo", - "note": "15", + "note": "13", "powered": "false" } }, @@ -140642,7 +144182,7 @@ "id": 1266, "properties": { "instrument": "banjo", - "note": "16", + "note": "14", "powered": "true" } }, @@ -140650,7 +144190,7 @@ "id": 1267, "properties": { "instrument": "banjo", - "note": "16", + "note": "14", "powered": "false" } }, @@ -140658,7 +144198,7 @@ "id": 1268, "properties": { "instrument": "banjo", - "note": "17", + "note": "15", "powered": "true" } }, @@ -140666,7 +144206,7 @@ "id": 1269, "properties": { "instrument": "banjo", - "note": "17", + "note": "15", "powered": "false" } }, @@ -140674,7 +144214,7 @@ "id": 1270, "properties": { "instrument": "banjo", - "note": "18", + "note": "16", "powered": "true" } }, @@ -140682,7 +144222,7 @@ "id": 1271, "properties": { "instrument": "banjo", - "note": "18", + "note": "16", "powered": "false" } }, @@ -140690,7 +144230,7 @@ "id": 1272, "properties": { "instrument": "banjo", - "note": "19", + "note": "17", "powered": "true" } }, @@ -140698,7 +144238,7 @@ "id": 1273, "properties": { "instrument": "banjo", - "note": "19", + "note": "17", "powered": "false" } }, @@ -140706,7 +144246,7 @@ "id": 1274, "properties": { "instrument": "banjo", - "note": "20", + "note": "18", "powered": "true" } }, @@ -140714,7 +144254,7 @@ "id": 1275, "properties": { "instrument": "banjo", - "note": "20", + "note": "18", "powered": "false" } }, @@ -140722,7 +144262,7 @@ "id": 1276, "properties": { "instrument": "banjo", - "note": "21", + "note": "19", "powered": "true" } }, @@ -140730,7 +144270,7 @@ "id": 1277, "properties": { "instrument": "banjo", - "note": "21", + "note": "19", "powered": "false" } }, @@ -140738,7 +144278,7 @@ "id": 1278, "properties": { "instrument": "banjo", - "note": "22", + "note": "20", "powered": "true" } }, @@ -140746,7 +144286,7 @@ "id": 1279, "properties": { "instrument": "banjo", - "note": "22", + "note": "20", "powered": "false" } }, @@ -140754,7 +144294,7 @@ "id": 1280, "properties": { "instrument": "banjo", - "note": "23", + "note": "21", "powered": "true" } }, @@ -140762,7 +144302,7 @@ "id": 1281, "properties": { "instrument": "banjo", - "note": "23", + "note": "21", "powered": "false" } }, @@ -140770,7 +144310,7 @@ "id": 1282, "properties": { "instrument": "banjo", - "note": "24", + "note": "22", "powered": "true" } }, @@ -140778,39 +144318,39 @@ "id": 1283, "properties": { "instrument": "banjo", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1284, "properties": { - "instrument": "pling", - "note": "0", + "instrument": "banjo", + "note": "23", "powered": "true" } }, { "id": 1285, "properties": { - "instrument": "pling", - "note": "0", + "instrument": "banjo", + "note": "23", "powered": "false" } }, { "id": 1286, "properties": { - "instrument": "pling", - "note": "1", + "instrument": "banjo", + "note": "24", "powered": "true" } }, { "id": 1287, "properties": { - "instrument": "pling", - "note": "1", + "instrument": "banjo", + "note": "24", "powered": "false" } }, @@ -140818,7 +144358,7 @@ "id": 1288, "properties": { "instrument": "pling", - "note": "2", + "note": "0", "powered": "true" } }, @@ -140826,7 +144366,7 @@ "id": 1289, "properties": { "instrument": "pling", - "note": "2", + "note": "0", "powered": "false" } }, @@ -140834,7 +144374,7 @@ "id": 1290, "properties": { "instrument": "pling", - "note": "3", + "note": "1", "powered": "true" } }, @@ -140842,7 +144382,7 @@ "id": 1291, "properties": { "instrument": "pling", - "note": "3", + "note": "1", "powered": "false" } }, @@ -140850,7 +144390,7 @@ "id": 1292, "properties": { "instrument": "pling", - "note": "4", + "note": "2", "powered": "true" } }, @@ -140858,7 +144398,7 @@ "id": 1293, "properties": { "instrument": "pling", - "note": "4", + "note": "2", "powered": "false" } }, @@ -140866,7 +144406,7 @@ "id": 1294, "properties": { "instrument": "pling", - "note": "5", + "note": "3", "powered": "true" } }, @@ -140874,7 +144414,7 @@ "id": 1295, "properties": { "instrument": "pling", - "note": "5", + "note": "3", "powered": "false" } }, @@ -140882,7 +144422,7 @@ "id": 1296, "properties": { "instrument": "pling", - "note": "6", + "note": "4", "powered": "true" } }, @@ -140890,7 +144430,7 @@ "id": 1297, "properties": { "instrument": "pling", - "note": "6", + "note": "4", "powered": "false" } }, @@ -140898,7 +144438,7 @@ "id": 1298, "properties": { "instrument": "pling", - "note": "7", + "note": "5", "powered": "true" } }, @@ -140906,7 +144446,7 @@ "id": 1299, "properties": { "instrument": "pling", - "note": "7", + "note": "5", "powered": "false" } }, @@ -140914,7 +144454,7 @@ "id": 1300, "properties": { "instrument": "pling", - "note": "8", + "note": "6", "powered": "true" } }, @@ -140922,7 +144462,7 @@ "id": 1301, "properties": { "instrument": "pling", - "note": "8", + "note": "6", "powered": "false" } }, @@ -140930,7 +144470,7 @@ "id": 1302, "properties": { "instrument": "pling", - "note": "9", + "note": "7", "powered": "true" } }, @@ -140938,7 +144478,7 @@ "id": 1303, "properties": { "instrument": "pling", - "note": "9", + "note": "7", "powered": "false" } }, @@ -140946,7 +144486,7 @@ "id": 1304, "properties": { "instrument": "pling", - "note": "10", + "note": "8", "powered": "true" } }, @@ -140954,7 +144494,7 @@ "id": 1305, "properties": { "instrument": "pling", - "note": "10", + "note": "8", "powered": "false" } }, @@ -140962,7 +144502,7 @@ "id": 1306, "properties": { "instrument": "pling", - "note": "11", + "note": "9", "powered": "true" } }, @@ -140970,7 +144510,7 @@ "id": 1307, "properties": { "instrument": "pling", - "note": "11", + "note": "9", "powered": "false" } }, @@ -140978,7 +144518,7 @@ "id": 1308, "properties": { "instrument": "pling", - "note": "12", + "note": "10", "powered": "true" } }, @@ -140986,7 +144526,7 @@ "id": 1309, "properties": { "instrument": "pling", - "note": "12", + "note": "10", "powered": "false" } }, @@ -140994,7 +144534,7 @@ "id": 1310, "properties": { "instrument": "pling", - "note": "13", + "note": "11", "powered": "true" } }, @@ -141002,7 +144542,7 @@ "id": 1311, "properties": { "instrument": "pling", - "note": "13", + "note": "11", "powered": "false" } }, @@ -141010,7 +144550,7 @@ "id": 1312, "properties": { "instrument": "pling", - "note": "14", + "note": "12", "powered": "true" } }, @@ -141018,7 +144558,7 @@ "id": 1313, "properties": { "instrument": "pling", - "note": "14", + "note": "12", "powered": "false" } }, @@ -141026,7 +144566,7 @@ "id": 1314, "properties": { "instrument": "pling", - "note": "15", + "note": "13", "powered": "true" } }, @@ -141034,7 +144574,7 @@ "id": 1315, "properties": { "instrument": "pling", - "note": "15", + "note": "13", "powered": "false" } }, @@ -141042,7 +144582,7 @@ "id": 1316, "properties": { "instrument": "pling", - "note": "16", + "note": "14", "powered": "true" } }, @@ -141050,7 +144590,7 @@ "id": 1317, "properties": { "instrument": "pling", - "note": "16", + "note": "14", "powered": "false" } }, @@ -141058,7 +144598,7 @@ "id": 1318, "properties": { "instrument": "pling", - "note": "17", + "note": "15", "powered": "true" } }, @@ -141066,7 +144606,7 @@ "id": 1319, "properties": { "instrument": "pling", - "note": "17", + "note": "15", "powered": "false" } }, @@ -141074,7 +144614,7 @@ "id": 1320, "properties": { "instrument": "pling", - "note": "18", + "note": "16", "powered": "true" } }, @@ -141082,7 +144622,7 @@ "id": 1321, "properties": { "instrument": "pling", - "note": "18", + "note": "16", "powered": "false" } }, @@ -141090,7 +144630,7 @@ "id": 1322, "properties": { "instrument": "pling", - "note": "19", + "note": "17", "powered": "true" } }, @@ -141098,7 +144638,7 @@ "id": 1323, "properties": { "instrument": "pling", - "note": "19", + "note": "17", "powered": "false" } }, @@ -141106,7 +144646,7 @@ "id": 1324, "properties": { "instrument": "pling", - "note": "20", + "note": "18", "powered": "true" } }, @@ -141114,7 +144654,7 @@ "id": 1325, "properties": { "instrument": "pling", - "note": "20", + "note": "18", "powered": "false" } }, @@ -141122,7 +144662,7 @@ "id": 1326, "properties": { "instrument": "pling", - "note": "21", + "note": "19", "powered": "true" } }, @@ -141130,7 +144670,7 @@ "id": 1327, "properties": { "instrument": "pling", - "note": "21", + "note": "19", "powered": "false" } }, @@ -141138,7 +144678,7 @@ "id": 1328, "properties": { "instrument": "pling", - "note": "22", + "note": "20", "powered": "true" } }, @@ -141146,7 +144686,7 @@ "id": 1329, "properties": { "instrument": "pling", - "note": "22", + "note": "20", "powered": "false" } }, @@ -141154,7 +144694,7 @@ "id": 1330, "properties": { "instrument": "pling", - "note": "23", + "note": "21", "powered": "true" } }, @@ -141162,7 +144702,7 @@ "id": 1331, "properties": { "instrument": "pling", - "note": "23", + "note": "21", "powered": "false" } }, @@ -141170,7 +144710,7 @@ "id": 1332, "properties": { "instrument": "pling", - "note": "24", + "note": "22", "powered": "true" } }, @@ -141178,39 +144718,39 @@ "id": 1333, "properties": { "instrument": "pling", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1334, "properties": { - "instrument": "zombie", - "note": "0", + "instrument": "pling", + "note": "23", "powered": "true" } }, { "id": 1335, "properties": { - "instrument": "zombie", - "note": "0", + "instrument": "pling", + "note": "23", "powered": "false" } }, { "id": 1336, "properties": { - "instrument": "zombie", - "note": "1", + "instrument": "pling", + "note": "24", "powered": "true" } }, { "id": 1337, "properties": { - "instrument": "zombie", - "note": "1", + "instrument": "pling", + "note": "24", "powered": "false" } }, @@ -141218,7 +144758,7 @@ "id": 1338, "properties": { "instrument": "zombie", - "note": "2", + "note": "0", "powered": "true" } }, @@ -141226,7 +144766,7 @@ "id": 1339, "properties": { "instrument": "zombie", - "note": "2", + "note": "0", "powered": "false" } }, @@ -141234,7 +144774,7 @@ "id": 1340, "properties": { "instrument": "zombie", - "note": "3", + "note": "1", "powered": "true" } }, @@ -141242,7 +144782,7 @@ "id": 1341, "properties": { "instrument": "zombie", - "note": "3", + "note": "1", "powered": "false" } }, @@ -141250,7 +144790,7 @@ "id": 1342, "properties": { "instrument": "zombie", - "note": "4", + "note": "2", "powered": "true" } }, @@ -141258,7 +144798,7 @@ "id": 1343, "properties": { "instrument": "zombie", - "note": "4", + "note": "2", "powered": "false" } }, @@ -141266,7 +144806,7 @@ "id": 1344, "properties": { "instrument": "zombie", - "note": "5", + "note": "3", "powered": "true" } }, @@ -141274,7 +144814,7 @@ "id": 1345, "properties": { "instrument": "zombie", - "note": "5", + "note": "3", "powered": "false" } }, @@ -141282,7 +144822,7 @@ "id": 1346, "properties": { "instrument": "zombie", - "note": "6", + "note": "4", "powered": "true" } }, @@ -141290,7 +144830,7 @@ "id": 1347, "properties": { "instrument": "zombie", - "note": "6", + "note": "4", "powered": "false" } }, @@ -141298,7 +144838,7 @@ "id": 1348, "properties": { "instrument": "zombie", - "note": "7", + "note": "5", "powered": "true" } }, @@ -141306,7 +144846,7 @@ "id": 1349, "properties": { "instrument": "zombie", - "note": "7", + "note": "5", "powered": "false" } }, @@ -141314,7 +144854,7 @@ "id": 1350, "properties": { "instrument": "zombie", - "note": "8", + "note": "6", "powered": "true" } }, @@ -141322,7 +144862,7 @@ "id": 1351, "properties": { "instrument": "zombie", - "note": "8", + "note": "6", "powered": "false" } }, @@ -141330,7 +144870,7 @@ "id": 1352, "properties": { "instrument": "zombie", - "note": "9", + "note": "7", "powered": "true" } }, @@ -141338,7 +144878,7 @@ "id": 1353, "properties": { "instrument": "zombie", - "note": "9", + "note": "7", "powered": "false" } }, @@ -141346,7 +144886,7 @@ "id": 1354, "properties": { "instrument": "zombie", - "note": "10", + "note": "8", "powered": "true" } }, @@ -141354,7 +144894,7 @@ "id": 1355, "properties": { "instrument": "zombie", - "note": "10", + "note": "8", "powered": "false" } }, @@ -141362,7 +144902,7 @@ "id": 1356, "properties": { "instrument": "zombie", - "note": "11", + "note": "9", "powered": "true" } }, @@ -141370,7 +144910,7 @@ "id": 1357, "properties": { "instrument": "zombie", - "note": "11", + "note": "9", "powered": "false" } }, @@ -141378,7 +144918,7 @@ "id": 1358, "properties": { "instrument": "zombie", - "note": "12", + "note": "10", "powered": "true" } }, @@ -141386,7 +144926,7 @@ "id": 1359, "properties": { "instrument": "zombie", - "note": "12", + "note": "10", "powered": "false" } }, @@ -141394,7 +144934,7 @@ "id": 1360, "properties": { "instrument": "zombie", - "note": "13", + "note": "11", "powered": "true" } }, @@ -141402,7 +144942,7 @@ "id": 1361, "properties": { "instrument": "zombie", - "note": "13", + "note": "11", "powered": "false" } }, @@ -141410,7 +144950,7 @@ "id": 1362, "properties": { "instrument": "zombie", - "note": "14", + "note": "12", "powered": "true" } }, @@ -141418,7 +144958,7 @@ "id": 1363, "properties": { "instrument": "zombie", - "note": "14", + "note": "12", "powered": "false" } }, @@ -141426,7 +144966,7 @@ "id": 1364, "properties": { "instrument": "zombie", - "note": "15", + "note": "13", "powered": "true" } }, @@ -141434,7 +144974,7 @@ "id": 1365, "properties": { "instrument": "zombie", - "note": "15", + "note": "13", "powered": "false" } }, @@ -141442,7 +144982,7 @@ "id": 1366, "properties": { "instrument": "zombie", - "note": "16", + "note": "14", "powered": "true" } }, @@ -141450,7 +144990,7 @@ "id": 1367, "properties": { "instrument": "zombie", - "note": "16", + "note": "14", "powered": "false" } }, @@ -141458,7 +144998,7 @@ "id": 1368, "properties": { "instrument": "zombie", - "note": "17", + "note": "15", "powered": "true" } }, @@ -141466,7 +145006,7 @@ "id": 1369, "properties": { "instrument": "zombie", - "note": "17", + "note": "15", "powered": "false" } }, @@ -141474,7 +145014,7 @@ "id": 1370, "properties": { "instrument": "zombie", - "note": "18", + "note": "16", "powered": "true" } }, @@ -141482,7 +145022,7 @@ "id": 1371, "properties": { "instrument": "zombie", - "note": "18", + "note": "16", "powered": "false" } }, @@ -141490,7 +145030,7 @@ "id": 1372, "properties": { "instrument": "zombie", - "note": "19", + "note": "17", "powered": "true" } }, @@ -141498,7 +145038,7 @@ "id": 1373, "properties": { "instrument": "zombie", - "note": "19", + "note": "17", "powered": "false" } }, @@ -141506,7 +145046,7 @@ "id": 1374, "properties": { "instrument": "zombie", - "note": "20", + "note": "18", "powered": "true" } }, @@ -141514,7 +145054,7 @@ "id": 1375, "properties": { "instrument": "zombie", - "note": "20", + "note": "18", "powered": "false" } }, @@ -141522,7 +145062,7 @@ "id": 1376, "properties": { "instrument": "zombie", - "note": "21", + "note": "19", "powered": "true" } }, @@ -141530,7 +145070,7 @@ "id": 1377, "properties": { "instrument": "zombie", - "note": "21", + "note": "19", "powered": "false" } }, @@ -141538,7 +145078,7 @@ "id": 1378, "properties": { "instrument": "zombie", - "note": "22", + "note": "20", "powered": "true" } }, @@ -141546,7 +145086,7 @@ "id": 1379, "properties": { "instrument": "zombie", - "note": "22", + "note": "20", "powered": "false" } }, @@ -141554,7 +145094,7 @@ "id": 1380, "properties": { "instrument": "zombie", - "note": "23", + "note": "21", "powered": "true" } }, @@ -141562,7 +145102,7 @@ "id": 1381, "properties": { "instrument": "zombie", - "note": "23", + "note": "21", "powered": "false" } }, @@ -141570,7 +145110,7 @@ "id": 1382, "properties": { "instrument": "zombie", - "note": "24", + "note": "22", "powered": "true" } }, @@ -141578,39 +145118,39 @@ "id": 1383, "properties": { "instrument": "zombie", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1384, "properties": { - "instrument": "skeleton", - "note": "0", + "instrument": "zombie", + "note": "23", "powered": "true" } }, { "id": 1385, "properties": { - "instrument": "skeleton", - "note": "0", + "instrument": "zombie", + "note": "23", "powered": "false" } }, { "id": 1386, "properties": { - "instrument": "skeleton", - "note": "1", + "instrument": "zombie", + "note": "24", "powered": "true" } }, { "id": 1387, "properties": { - "instrument": "skeleton", - "note": "1", + "instrument": "zombie", + "note": "24", "powered": "false" } }, @@ -141618,7 +145158,7 @@ "id": 1388, "properties": { "instrument": "skeleton", - "note": "2", + "note": "0", "powered": "true" } }, @@ -141626,7 +145166,7 @@ "id": 1389, "properties": { "instrument": "skeleton", - "note": "2", + "note": "0", "powered": "false" } }, @@ -141634,7 +145174,7 @@ "id": 1390, "properties": { "instrument": "skeleton", - "note": "3", + "note": "1", "powered": "true" } }, @@ -141642,7 +145182,7 @@ "id": 1391, "properties": { "instrument": "skeleton", - "note": "3", + "note": "1", "powered": "false" } }, @@ -141650,7 +145190,7 @@ "id": 1392, "properties": { "instrument": "skeleton", - "note": "4", + "note": "2", "powered": "true" } }, @@ -141658,7 +145198,7 @@ "id": 1393, "properties": { "instrument": "skeleton", - "note": "4", + "note": "2", "powered": "false" } }, @@ -141666,7 +145206,7 @@ "id": 1394, "properties": { "instrument": "skeleton", - "note": "5", + "note": "3", "powered": "true" } }, @@ -141674,7 +145214,7 @@ "id": 1395, "properties": { "instrument": "skeleton", - "note": "5", + "note": "3", "powered": "false" } }, @@ -141682,7 +145222,7 @@ "id": 1396, "properties": { "instrument": "skeleton", - "note": "6", + "note": "4", "powered": "true" } }, @@ -141690,7 +145230,7 @@ "id": 1397, "properties": { "instrument": "skeleton", - "note": "6", + "note": "4", "powered": "false" } }, @@ -141698,7 +145238,7 @@ "id": 1398, "properties": { "instrument": "skeleton", - "note": "7", + "note": "5", "powered": "true" } }, @@ -141706,7 +145246,7 @@ "id": 1399, "properties": { "instrument": "skeleton", - "note": "7", + "note": "5", "powered": "false" } }, @@ -141714,7 +145254,7 @@ "id": 1400, "properties": { "instrument": "skeleton", - "note": "8", + "note": "6", "powered": "true" } }, @@ -141722,7 +145262,7 @@ "id": 1401, "properties": { "instrument": "skeleton", - "note": "8", + "note": "6", "powered": "false" } }, @@ -141730,7 +145270,7 @@ "id": 1402, "properties": { "instrument": "skeleton", - "note": "9", + "note": "7", "powered": "true" } }, @@ -141738,7 +145278,7 @@ "id": 1403, "properties": { "instrument": "skeleton", - "note": "9", + "note": "7", "powered": "false" } }, @@ -141746,7 +145286,7 @@ "id": 1404, "properties": { "instrument": "skeleton", - "note": "10", + "note": "8", "powered": "true" } }, @@ -141754,7 +145294,7 @@ "id": 1405, "properties": { "instrument": "skeleton", - "note": "10", + "note": "8", "powered": "false" } }, @@ -141762,7 +145302,7 @@ "id": 1406, "properties": { "instrument": "skeleton", - "note": "11", + "note": "9", "powered": "true" } }, @@ -141770,7 +145310,7 @@ "id": 1407, "properties": { "instrument": "skeleton", - "note": "11", + "note": "9", "powered": "false" } }, @@ -141778,7 +145318,7 @@ "id": 1408, "properties": { "instrument": "skeleton", - "note": "12", + "note": "10", "powered": "true" } }, @@ -141786,7 +145326,7 @@ "id": 1409, "properties": { "instrument": "skeleton", - "note": "12", + "note": "10", "powered": "false" } }, @@ -141794,7 +145334,7 @@ "id": 1410, "properties": { "instrument": "skeleton", - "note": "13", + "note": "11", "powered": "true" } }, @@ -141802,7 +145342,7 @@ "id": 1411, "properties": { "instrument": "skeleton", - "note": "13", + "note": "11", "powered": "false" } }, @@ -141810,7 +145350,7 @@ "id": 1412, "properties": { "instrument": "skeleton", - "note": "14", + "note": "12", "powered": "true" } }, @@ -141818,7 +145358,7 @@ "id": 1413, "properties": { "instrument": "skeleton", - "note": "14", + "note": "12", "powered": "false" } }, @@ -141826,7 +145366,7 @@ "id": 1414, "properties": { "instrument": "skeleton", - "note": "15", + "note": "13", "powered": "true" } }, @@ -141834,7 +145374,7 @@ "id": 1415, "properties": { "instrument": "skeleton", - "note": "15", + "note": "13", "powered": "false" } }, @@ -141842,7 +145382,7 @@ "id": 1416, "properties": { "instrument": "skeleton", - "note": "16", + "note": "14", "powered": "true" } }, @@ -141850,7 +145390,7 @@ "id": 1417, "properties": { "instrument": "skeleton", - "note": "16", + "note": "14", "powered": "false" } }, @@ -141858,7 +145398,7 @@ "id": 1418, "properties": { "instrument": "skeleton", - "note": "17", + "note": "15", "powered": "true" } }, @@ -141866,7 +145406,7 @@ "id": 1419, "properties": { "instrument": "skeleton", - "note": "17", + "note": "15", "powered": "false" } }, @@ -141874,7 +145414,7 @@ "id": 1420, "properties": { "instrument": "skeleton", - "note": "18", + "note": "16", "powered": "true" } }, @@ -141882,7 +145422,7 @@ "id": 1421, "properties": { "instrument": "skeleton", - "note": "18", + "note": "16", "powered": "false" } }, @@ -141890,7 +145430,7 @@ "id": 1422, "properties": { "instrument": "skeleton", - "note": "19", + "note": "17", "powered": "true" } }, @@ -141898,7 +145438,7 @@ "id": 1423, "properties": { "instrument": "skeleton", - "note": "19", + "note": "17", "powered": "false" } }, @@ -141906,7 +145446,7 @@ "id": 1424, "properties": { "instrument": "skeleton", - "note": "20", + "note": "18", "powered": "true" } }, @@ -141914,7 +145454,7 @@ "id": 1425, "properties": { "instrument": "skeleton", - "note": "20", + "note": "18", "powered": "false" } }, @@ -141922,7 +145462,7 @@ "id": 1426, "properties": { "instrument": "skeleton", - "note": "21", + "note": "19", "powered": "true" } }, @@ -141930,7 +145470,7 @@ "id": 1427, "properties": { "instrument": "skeleton", - "note": "21", + "note": "19", "powered": "false" } }, @@ -141938,7 +145478,7 @@ "id": 1428, "properties": { "instrument": "skeleton", - "note": "22", + "note": "20", "powered": "true" } }, @@ -141946,7 +145486,7 @@ "id": 1429, "properties": { "instrument": "skeleton", - "note": "22", + "note": "20", "powered": "false" } }, @@ -141954,7 +145494,7 @@ "id": 1430, "properties": { "instrument": "skeleton", - "note": "23", + "note": "21", "powered": "true" } }, @@ -141962,7 +145502,7 @@ "id": 1431, "properties": { "instrument": "skeleton", - "note": "23", + "note": "21", "powered": "false" } }, @@ -141970,7 +145510,7 @@ "id": 1432, "properties": { "instrument": "skeleton", - "note": "24", + "note": "22", "powered": "true" } }, @@ -141978,39 +145518,39 @@ "id": 1433, "properties": { "instrument": "skeleton", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1434, "properties": { - "instrument": "creeper", - "note": "0", + "instrument": "skeleton", + "note": "23", "powered": "true" } }, { "id": 1435, "properties": { - "instrument": "creeper", - "note": "0", + "instrument": "skeleton", + "note": "23", "powered": "false" } }, { "id": 1436, "properties": { - "instrument": "creeper", - "note": "1", + "instrument": "skeleton", + "note": "24", "powered": "true" } }, { "id": 1437, "properties": { - "instrument": "creeper", - "note": "1", + "instrument": "skeleton", + "note": "24", "powered": "false" } }, @@ -142018,7 +145558,7 @@ "id": 1438, "properties": { "instrument": "creeper", - "note": "2", + "note": "0", "powered": "true" } }, @@ -142026,7 +145566,7 @@ "id": 1439, "properties": { "instrument": "creeper", - "note": "2", + "note": "0", "powered": "false" } }, @@ -142034,7 +145574,7 @@ "id": 1440, "properties": { "instrument": "creeper", - "note": "3", + "note": "1", "powered": "true" } }, @@ -142042,7 +145582,7 @@ "id": 1441, "properties": { "instrument": "creeper", - "note": "3", + "note": "1", "powered": "false" } }, @@ -142050,7 +145590,7 @@ "id": 1442, "properties": { "instrument": "creeper", - "note": "4", + "note": "2", "powered": "true" } }, @@ -142058,7 +145598,7 @@ "id": 1443, "properties": { "instrument": "creeper", - "note": "4", + "note": "2", "powered": "false" } }, @@ -142066,7 +145606,7 @@ "id": 1444, "properties": { "instrument": "creeper", - "note": "5", + "note": "3", "powered": "true" } }, @@ -142074,7 +145614,7 @@ "id": 1445, "properties": { "instrument": "creeper", - "note": "5", + "note": "3", "powered": "false" } }, @@ -142082,7 +145622,7 @@ "id": 1446, "properties": { "instrument": "creeper", - "note": "6", + "note": "4", "powered": "true" } }, @@ -142090,7 +145630,7 @@ "id": 1447, "properties": { "instrument": "creeper", - "note": "6", + "note": "4", "powered": "false" } }, @@ -142098,7 +145638,7 @@ "id": 1448, "properties": { "instrument": "creeper", - "note": "7", + "note": "5", "powered": "true" } }, @@ -142106,7 +145646,7 @@ "id": 1449, "properties": { "instrument": "creeper", - "note": "7", + "note": "5", "powered": "false" } }, @@ -142114,7 +145654,7 @@ "id": 1450, "properties": { "instrument": "creeper", - "note": "8", + "note": "6", "powered": "true" } }, @@ -142122,7 +145662,7 @@ "id": 1451, "properties": { "instrument": "creeper", - "note": "8", + "note": "6", "powered": "false" } }, @@ -142130,7 +145670,7 @@ "id": 1452, "properties": { "instrument": "creeper", - "note": "9", + "note": "7", "powered": "true" } }, @@ -142138,7 +145678,7 @@ "id": 1453, "properties": { "instrument": "creeper", - "note": "9", + "note": "7", "powered": "false" } }, @@ -142146,7 +145686,7 @@ "id": 1454, "properties": { "instrument": "creeper", - "note": "10", + "note": "8", "powered": "true" } }, @@ -142154,7 +145694,7 @@ "id": 1455, "properties": { "instrument": "creeper", - "note": "10", + "note": "8", "powered": "false" } }, @@ -142162,7 +145702,7 @@ "id": 1456, "properties": { "instrument": "creeper", - "note": "11", + "note": "9", "powered": "true" } }, @@ -142170,7 +145710,7 @@ "id": 1457, "properties": { "instrument": "creeper", - "note": "11", + "note": "9", "powered": "false" } }, @@ -142178,7 +145718,7 @@ "id": 1458, "properties": { "instrument": "creeper", - "note": "12", + "note": "10", "powered": "true" } }, @@ -142186,7 +145726,7 @@ "id": 1459, "properties": { "instrument": "creeper", - "note": "12", + "note": "10", "powered": "false" } }, @@ -142194,7 +145734,7 @@ "id": 1460, "properties": { "instrument": "creeper", - "note": "13", + "note": "11", "powered": "true" } }, @@ -142202,7 +145742,7 @@ "id": 1461, "properties": { "instrument": "creeper", - "note": "13", + "note": "11", "powered": "false" } }, @@ -142210,7 +145750,7 @@ "id": 1462, "properties": { "instrument": "creeper", - "note": "14", + "note": "12", "powered": "true" } }, @@ -142218,7 +145758,7 @@ "id": 1463, "properties": { "instrument": "creeper", - "note": "14", + "note": "12", "powered": "false" } }, @@ -142226,7 +145766,7 @@ "id": 1464, "properties": { "instrument": "creeper", - "note": "15", + "note": "13", "powered": "true" } }, @@ -142234,7 +145774,7 @@ "id": 1465, "properties": { "instrument": "creeper", - "note": "15", + "note": "13", "powered": "false" } }, @@ -142242,7 +145782,7 @@ "id": 1466, "properties": { "instrument": "creeper", - "note": "16", + "note": "14", "powered": "true" } }, @@ -142250,7 +145790,7 @@ "id": 1467, "properties": { "instrument": "creeper", - "note": "16", + "note": "14", "powered": "false" } }, @@ -142258,7 +145798,7 @@ "id": 1468, "properties": { "instrument": "creeper", - "note": "17", + "note": "15", "powered": "true" } }, @@ -142266,7 +145806,7 @@ "id": 1469, "properties": { "instrument": "creeper", - "note": "17", + "note": "15", "powered": "false" } }, @@ -142274,7 +145814,7 @@ "id": 1470, "properties": { "instrument": "creeper", - "note": "18", + "note": "16", "powered": "true" } }, @@ -142282,7 +145822,7 @@ "id": 1471, "properties": { "instrument": "creeper", - "note": "18", + "note": "16", "powered": "false" } }, @@ -142290,7 +145830,7 @@ "id": 1472, "properties": { "instrument": "creeper", - "note": "19", + "note": "17", "powered": "true" } }, @@ -142298,7 +145838,7 @@ "id": 1473, "properties": { "instrument": "creeper", - "note": "19", + "note": "17", "powered": "false" } }, @@ -142306,7 +145846,7 @@ "id": 1474, "properties": { "instrument": "creeper", - "note": "20", + "note": "18", "powered": "true" } }, @@ -142314,7 +145854,7 @@ "id": 1475, "properties": { "instrument": "creeper", - "note": "20", + "note": "18", "powered": "false" } }, @@ -142322,7 +145862,7 @@ "id": 1476, "properties": { "instrument": "creeper", - "note": "21", + "note": "19", "powered": "true" } }, @@ -142330,7 +145870,7 @@ "id": 1477, "properties": { "instrument": "creeper", - "note": "21", + "note": "19", "powered": "false" } }, @@ -142338,7 +145878,7 @@ "id": 1478, "properties": { "instrument": "creeper", - "note": "22", + "note": "20", "powered": "true" } }, @@ -142346,7 +145886,7 @@ "id": 1479, "properties": { "instrument": "creeper", - "note": "22", + "note": "20", "powered": "false" } }, @@ -142354,7 +145894,7 @@ "id": 1480, "properties": { "instrument": "creeper", - "note": "23", + "note": "21", "powered": "true" } }, @@ -142362,7 +145902,7 @@ "id": 1481, "properties": { "instrument": "creeper", - "note": "23", + "note": "21", "powered": "false" } }, @@ -142370,7 +145910,7 @@ "id": 1482, "properties": { "instrument": "creeper", - "note": "24", + "note": "22", "powered": "true" } }, @@ -142378,39 +145918,39 @@ "id": 1483, "properties": { "instrument": "creeper", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1484, "properties": { - "instrument": "dragon", - "note": "0", + "instrument": "creeper", + "note": "23", "powered": "true" } }, { "id": 1485, "properties": { - "instrument": "dragon", - "note": "0", + "instrument": "creeper", + "note": "23", "powered": "false" } }, { "id": 1486, "properties": { - "instrument": "dragon", - "note": "1", + "instrument": "creeper", + "note": "24", "powered": "true" } }, { "id": 1487, "properties": { - "instrument": "dragon", - "note": "1", + "instrument": "creeper", + "note": "24", "powered": "false" } }, @@ -142418,7 +145958,7 @@ "id": 1488, "properties": { "instrument": "dragon", - "note": "2", + "note": "0", "powered": "true" } }, @@ -142426,7 +145966,7 @@ "id": 1489, "properties": { "instrument": "dragon", - "note": "2", + "note": "0", "powered": "false" } }, @@ -142434,7 +145974,7 @@ "id": 1490, "properties": { "instrument": "dragon", - "note": "3", + "note": "1", "powered": "true" } }, @@ -142442,7 +145982,7 @@ "id": 1491, "properties": { "instrument": "dragon", - "note": "3", + "note": "1", "powered": "false" } }, @@ -142450,7 +145990,7 @@ "id": 1492, "properties": { "instrument": "dragon", - "note": "4", + "note": "2", "powered": "true" } }, @@ -142458,7 +145998,7 @@ "id": 1493, "properties": { "instrument": "dragon", - "note": "4", + "note": "2", "powered": "false" } }, @@ -142466,7 +146006,7 @@ "id": 1494, "properties": { "instrument": "dragon", - "note": "5", + "note": "3", "powered": "true" } }, @@ -142474,7 +146014,7 @@ "id": 1495, "properties": { "instrument": "dragon", - "note": "5", + "note": "3", "powered": "false" } }, @@ -142482,7 +146022,7 @@ "id": 1496, "properties": { "instrument": "dragon", - "note": "6", + "note": "4", "powered": "true" } }, @@ -142490,7 +146030,7 @@ "id": 1497, "properties": { "instrument": "dragon", - "note": "6", + "note": "4", "powered": "false" } }, @@ -142498,7 +146038,7 @@ "id": 1498, "properties": { "instrument": "dragon", - "note": "7", + "note": "5", "powered": "true" } }, @@ -142506,7 +146046,7 @@ "id": 1499, "properties": { "instrument": "dragon", - "note": "7", + "note": "5", "powered": "false" } }, @@ -142514,7 +146054,7 @@ "id": 1500, "properties": { "instrument": "dragon", - "note": "8", + "note": "6", "powered": "true" } }, @@ -142522,7 +146062,7 @@ "id": 1501, "properties": { "instrument": "dragon", - "note": "8", + "note": "6", "powered": "false" } }, @@ -142530,7 +146070,7 @@ "id": 1502, "properties": { "instrument": "dragon", - "note": "9", + "note": "7", "powered": "true" } }, @@ -142538,7 +146078,7 @@ "id": 1503, "properties": { "instrument": "dragon", - "note": "9", + "note": "7", "powered": "false" } }, @@ -142546,7 +146086,7 @@ "id": 1504, "properties": { "instrument": "dragon", - "note": "10", + "note": "8", "powered": "true" } }, @@ -142554,7 +146094,7 @@ "id": 1505, "properties": { "instrument": "dragon", - "note": "10", + "note": "8", "powered": "false" } }, @@ -142562,7 +146102,7 @@ "id": 1506, "properties": { "instrument": "dragon", - "note": "11", + "note": "9", "powered": "true" } }, @@ -142570,7 +146110,7 @@ "id": 1507, "properties": { "instrument": "dragon", - "note": "11", + "note": "9", "powered": "false" } }, @@ -142578,7 +146118,7 @@ "id": 1508, "properties": { "instrument": "dragon", - "note": "12", + "note": "10", "powered": "true" } }, @@ -142586,7 +146126,7 @@ "id": 1509, "properties": { "instrument": "dragon", - "note": "12", + "note": "10", "powered": "false" } }, @@ -142594,7 +146134,7 @@ "id": 1510, "properties": { "instrument": "dragon", - "note": "13", + "note": "11", "powered": "true" } }, @@ -142602,7 +146142,7 @@ "id": 1511, "properties": { "instrument": "dragon", - "note": "13", + "note": "11", "powered": "false" } }, @@ -142610,7 +146150,7 @@ "id": 1512, "properties": { "instrument": "dragon", - "note": "14", + "note": "12", "powered": "true" } }, @@ -142618,7 +146158,7 @@ "id": 1513, "properties": { "instrument": "dragon", - "note": "14", + "note": "12", "powered": "false" } }, @@ -142626,7 +146166,7 @@ "id": 1514, "properties": { "instrument": "dragon", - "note": "15", + "note": "13", "powered": "true" } }, @@ -142634,7 +146174,7 @@ "id": 1515, "properties": { "instrument": "dragon", - "note": "15", + "note": "13", "powered": "false" } }, @@ -142642,7 +146182,7 @@ "id": 1516, "properties": { "instrument": "dragon", - "note": "16", + "note": "14", "powered": "true" } }, @@ -142650,7 +146190,7 @@ "id": 1517, "properties": { "instrument": "dragon", - "note": "16", + "note": "14", "powered": "false" } }, @@ -142658,7 +146198,7 @@ "id": 1518, "properties": { "instrument": "dragon", - "note": "17", + "note": "15", "powered": "true" } }, @@ -142666,7 +146206,7 @@ "id": 1519, "properties": { "instrument": "dragon", - "note": "17", + "note": "15", "powered": "false" } }, @@ -142674,7 +146214,7 @@ "id": 1520, "properties": { "instrument": "dragon", - "note": "18", + "note": "16", "powered": "true" } }, @@ -142682,7 +146222,7 @@ "id": 1521, "properties": { "instrument": "dragon", - "note": "18", + "note": "16", "powered": "false" } }, @@ -142690,7 +146230,7 @@ "id": 1522, "properties": { "instrument": "dragon", - "note": "19", + "note": "17", "powered": "true" } }, @@ -142698,7 +146238,7 @@ "id": 1523, "properties": { "instrument": "dragon", - "note": "19", + "note": "17", "powered": "false" } }, @@ -142706,7 +146246,7 @@ "id": 1524, "properties": { "instrument": "dragon", - "note": "20", + "note": "18", "powered": "true" } }, @@ -142714,7 +146254,7 @@ "id": 1525, "properties": { "instrument": "dragon", - "note": "20", + "note": "18", "powered": "false" } }, @@ -142722,7 +146262,7 @@ "id": 1526, "properties": { "instrument": "dragon", - "note": "21", + "note": "19", "powered": "true" } }, @@ -142730,7 +146270,7 @@ "id": 1527, "properties": { "instrument": "dragon", - "note": "21", + "note": "19", "powered": "false" } }, @@ -142738,7 +146278,7 @@ "id": 1528, "properties": { "instrument": "dragon", - "note": "22", + "note": "20", "powered": "true" } }, @@ -142746,7 +146286,7 @@ "id": 1529, "properties": { "instrument": "dragon", - "note": "22", + "note": "20", "powered": "false" } }, @@ -142754,7 +146294,7 @@ "id": 1530, "properties": { "instrument": "dragon", - "note": "23", + "note": "21", "powered": "true" } }, @@ -142762,7 +146302,7 @@ "id": 1531, "properties": { "instrument": "dragon", - "note": "23", + "note": "21", "powered": "false" } }, @@ -142770,7 +146310,7 @@ "id": 1532, "properties": { "instrument": "dragon", - "note": "24", + "note": "22", "powered": "true" } }, @@ -142778,39 +146318,39 @@ "id": 1533, "properties": { "instrument": "dragon", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1534, "properties": { - "instrument": "wither_skeleton", - "note": "0", + "instrument": "dragon", + "note": "23", "powered": "true" } }, { "id": 1535, "properties": { - "instrument": "wither_skeleton", - "note": "0", + "instrument": "dragon", + "note": "23", "powered": "false" } }, { "id": 1536, "properties": { - "instrument": "wither_skeleton", - "note": "1", + "instrument": "dragon", + "note": "24", "powered": "true" } }, { "id": 1537, "properties": { - "instrument": "wither_skeleton", - "note": "1", + "instrument": "dragon", + "note": "24", "powered": "false" } }, @@ -142818,7 +146358,7 @@ "id": 1538, "properties": { "instrument": "wither_skeleton", - "note": "2", + "note": "0", "powered": "true" } }, @@ -142826,7 +146366,7 @@ "id": 1539, "properties": { "instrument": "wither_skeleton", - "note": "2", + "note": "0", "powered": "false" } }, @@ -142834,7 +146374,7 @@ "id": 1540, "properties": { "instrument": "wither_skeleton", - "note": "3", + "note": "1", "powered": "true" } }, @@ -142842,7 +146382,7 @@ "id": 1541, "properties": { "instrument": "wither_skeleton", - "note": "3", + "note": "1", "powered": "false" } }, @@ -142850,7 +146390,7 @@ "id": 1542, "properties": { "instrument": "wither_skeleton", - "note": "4", + "note": "2", "powered": "true" } }, @@ -142858,7 +146398,7 @@ "id": 1543, "properties": { "instrument": "wither_skeleton", - "note": "4", + "note": "2", "powered": "false" } }, @@ -142866,7 +146406,7 @@ "id": 1544, "properties": { "instrument": "wither_skeleton", - "note": "5", + "note": "3", "powered": "true" } }, @@ -142874,7 +146414,7 @@ "id": 1545, "properties": { "instrument": "wither_skeleton", - "note": "5", + "note": "3", "powered": "false" } }, @@ -142882,7 +146422,7 @@ "id": 1546, "properties": { "instrument": "wither_skeleton", - "note": "6", + "note": "4", "powered": "true" } }, @@ -142890,7 +146430,7 @@ "id": 1547, "properties": { "instrument": "wither_skeleton", - "note": "6", + "note": "4", "powered": "false" } }, @@ -142898,7 +146438,7 @@ "id": 1548, "properties": { "instrument": "wither_skeleton", - "note": "7", + "note": "5", "powered": "true" } }, @@ -142906,7 +146446,7 @@ "id": 1549, "properties": { "instrument": "wither_skeleton", - "note": "7", + "note": "5", "powered": "false" } }, @@ -142914,7 +146454,7 @@ "id": 1550, "properties": { "instrument": "wither_skeleton", - "note": "8", + "note": "6", "powered": "true" } }, @@ -142922,7 +146462,7 @@ "id": 1551, "properties": { "instrument": "wither_skeleton", - "note": "8", + "note": "6", "powered": "false" } }, @@ -142930,7 +146470,7 @@ "id": 1552, "properties": { "instrument": "wither_skeleton", - "note": "9", + "note": "7", "powered": "true" } }, @@ -142938,7 +146478,7 @@ "id": 1553, "properties": { "instrument": "wither_skeleton", - "note": "9", + "note": "7", "powered": "false" } }, @@ -142946,7 +146486,7 @@ "id": 1554, "properties": { "instrument": "wither_skeleton", - "note": "10", + "note": "8", "powered": "true" } }, @@ -142954,7 +146494,7 @@ "id": 1555, "properties": { "instrument": "wither_skeleton", - "note": "10", + "note": "8", "powered": "false" } }, @@ -142962,7 +146502,7 @@ "id": 1556, "properties": { "instrument": "wither_skeleton", - "note": "11", + "note": "9", "powered": "true" } }, @@ -142970,7 +146510,7 @@ "id": 1557, "properties": { "instrument": "wither_skeleton", - "note": "11", + "note": "9", "powered": "false" } }, @@ -142978,7 +146518,7 @@ "id": 1558, "properties": { "instrument": "wither_skeleton", - "note": "12", + "note": "10", "powered": "true" } }, @@ -142986,7 +146526,7 @@ "id": 1559, "properties": { "instrument": "wither_skeleton", - "note": "12", + "note": "10", "powered": "false" } }, @@ -142994,7 +146534,7 @@ "id": 1560, "properties": { "instrument": "wither_skeleton", - "note": "13", + "note": "11", "powered": "true" } }, @@ -143002,7 +146542,7 @@ "id": 1561, "properties": { "instrument": "wither_skeleton", - "note": "13", + "note": "11", "powered": "false" } }, @@ -143010,7 +146550,7 @@ "id": 1562, "properties": { "instrument": "wither_skeleton", - "note": "14", + "note": "12", "powered": "true" } }, @@ -143018,7 +146558,7 @@ "id": 1563, "properties": { "instrument": "wither_skeleton", - "note": "14", + "note": "12", "powered": "false" } }, @@ -143026,7 +146566,7 @@ "id": 1564, "properties": { "instrument": "wither_skeleton", - "note": "15", + "note": "13", "powered": "true" } }, @@ -143034,7 +146574,7 @@ "id": 1565, "properties": { "instrument": "wither_skeleton", - "note": "15", + "note": "13", "powered": "false" } }, @@ -143042,7 +146582,7 @@ "id": 1566, "properties": { "instrument": "wither_skeleton", - "note": "16", + "note": "14", "powered": "true" } }, @@ -143050,7 +146590,7 @@ "id": 1567, "properties": { "instrument": "wither_skeleton", - "note": "16", + "note": "14", "powered": "false" } }, @@ -143058,7 +146598,7 @@ "id": 1568, "properties": { "instrument": "wither_skeleton", - "note": "17", + "note": "15", "powered": "true" } }, @@ -143066,7 +146606,7 @@ "id": 1569, "properties": { "instrument": "wither_skeleton", - "note": "17", + "note": "15", "powered": "false" } }, @@ -143074,7 +146614,7 @@ "id": 1570, "properties": { "instrument": "wither_skeleton", - "note": "18", + "note": "16", "powered": "true" } }, @@ -143082,7 +146622,7 @@ "id": 1571, "properties": { "instrument": "wither_skeleton", - "note": "18", + "note": "16", "powered": "false" } }, @@ -143090,7 +146630,7 @@ "id": 1572, "properties": { "instrument": "wither_skeleton", - "note": "19", + "note": "17", "powered": "true" } }, @@ -143098,7 +146638,7 @@ "id": 1573, "properties": { "instrument": "wither_skeleton", - "note": "19", + "note": "17", "powered": "false" } }, @@ -143106,7 +146646,7 @@ "id": 1574, "properties": { "instrument": "wither_skeleton", - "note": "20", + "note": "18", "powered": "true" } }, @@ -143114,7 +146654,7 @@ "id": 1575, "properties": { "instrument": "wither_skeleton", - "note": "20", + "note": "18", "powered": "false" } }, @@ -143122,7 +146662,7 @@ "id": 1576, "properties": { "instrument": "wither_skeleton", - "note": "21", + "note": "19", "powered": "true" } }, @@ -143130,7 +146670,7 @@ "id": 1577, "properties": { "instrument": "wither_skeleton", - "note": "21", + "note": "19", "powered": "false" } }, @@ -143138,7 +146678,7 @@ "id": 1578, "properties": { "instrument": "wither_skeleton", - "note": "22", + "note": "20", "powered": "true" } }, @@ -143146,7 +146686,7 @@ "id": 1579, "properties": { "instrument": "wither_skeleton", - "note": "22", + "note": "20", "powered": "false" } }, @@ -143154,7 +146694,7 @@ "id": 1580, "properties": { "instrument": "wither_skeleton", - "note": "23", + "note": "21", "powered": "true" } }, @@ -143162,7 +146702,7 @@ "id": 1581, "properties": { "instrument": "wither_skeleton", - "note": "23", + "note": "21", "powered": "false" } }, @@ -143170,7 +146710,7 @@ "id": 1582, "properties": { "instrument": "wither_skeleton", - "note": "24", + "note": "22", "powered": "true" } }, @@ -143178,39 +146718,39 @@ "id": 1583, "properties": { "instrument": "wither_skeleton", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1584, "properties": { - "instrument": "piglin", - "note": "0", + "instrument": "wither_skeleton", + "note": "23", "powered": "true" } }, { "id": 1585, "properties": { - "instrument": "piglin", - "note": "0", + "instrument": "wither_skeleton", + "note": "23", "powered": "false" } }, { "id": 1586, "properties": { - "instrument": "piglin", - "note": "1", + "instrument": "wither_skeleton", + "note": "24", "powered": "true" } }, { "id": 1587, "properties": { - "instrument": "piglin", - "note": "1", + "instrument": "wither_skeleton", + "note": "24", "powered": "false" } }, @@ -143218,7 +146758,7 @@ "id": 1588, "properties": { "instrument": "piglin", - "note": "2", + "note": "0", "powered": "true" } }, @@ -143226,7 +146766,7 @@ "id": 1589, "properties": { "instrument": "piglin", - "note": "2", + "note": "0", "powered": "false" } }, @@ -143234,7 +146774,7 @@ "id": 1590, "properties": { "instrument": "piglin", - "note": "3", + "note": "1", "powered": "true" } }, @@ -143242,7 +146782,7 @@ "id": 1591, "properties": { "instrument": "piglin", - "note": "3", + "note": "1", "powered": "false" } }, @@ -143250,7 +146790,7 @@ "id": 1592, "properties": { "instrument": "piglin", - "note": "4", + "note": "2", "powered": "true" } }, @@ -143258,7 +146798,7 @@ "id": 1593, "properties": { "instrument": "piglin", - "note": "4", + "note": "2", "powered": "false" } }, @@ -143266,7 +146806,7 @@ "id": 1594, "properties": { "instrument": "piglin", - "note": "5", + "note": "3", "powered": "true" } }, @@ -143274,7 +146814,7 @@ "id": 1595, "properties": { "instrument": "piglin", - "note": "5", + "note": "3", "powered": "false" } }, @@ -143282,7 +146822,7 @@ "id": 1596, "properties": { "instrument": "piglin", - "note": "6", + "note": "4", "powered": "true" } }, @@ -143290,7 +146830,7 @@ "id": 1597, "properties": { "instrument": "piglin", - "note": "6", + "note": "4", "powered": "false" } }, @@ -143298,7 +146838,7 @@ "id": 1598, "properties": { "instrument": "piglin", - "note": "7", + "note": "5", "powered": "true" } }, @@ -143306,7 +146846,7 @@ "id": 1599, "properties": { "instrument": "piglin", - "note": "7", + "note": "5", "powered": "false" } }, @@ -143314,7 +146854,7 @@ "id": 1600, "properties": { "instrument": "piglin", - "note": "8", + "note": "6", "powered": "true" } }, @@ -143322,7 +146862,7 @@ "id": 1601, "properties": { "instrument": "piglin", - "note": "8", + "note": "6", "powered": "false" } }, @@ -143330,7 +146870,7 @@ "id": 1602, "properties": { "instrument": "piglin", - "note": "9", + "note": "7", "powered": "true" } }, @@ -143338,7 +146878,7 @@ "id": 1603, "properties": { "instrument": "piglin", - "note": "9", + "note": "7", "powered": "false" } }, @@ -143346,7 +146886,7 @@ "id": 1604, "properties": { "instrument": "piglin", - "note": "10", + "note": "8", "powered": "true" } }, @@ -143354,7 +146894,7 @@ "id": 1605, "properties": { "instrument": "piglin", - "note": "10", + "note": "8", "powered": "false" } }, @@ -143362,7 +146902,7 @@ "id": 1606, "properties": { "instrument": "piglin", - "note": "11", + "note": "9", "powered": "true" } }, @@ -143370,7 +146910,7 @@ "id": 1607, "properties": { "instrument": "piglin", - "note": "11", + "note": "9", "powered": "false" } }, @@ -143378,7 +146918,7 @@ "id": 1608, "properties": { "instrument": "piglin", - "note": "12", + "note": "10", "powered": "true" } }, @@ -143386,7 +146926,7 @@ "id": 1609, "properties": { "instrument": "piglin", - "note": "12", + "note": "10", "powered": "false" } }, @@ -143394,7 +146934,7 @@ "id": 1610, "properties": { "instrument": "piglin", - "note": "13", + "note": "11", "powered": "true" } }, @@ -143402,7 +146942,7 @@ "id": 1611, "properties": { "instrument": "piglin", - "note": "13", + "note": "11", "powered": "false" } }, @@ -143410,7 +146950,7 @@ "id": 1612, "properties": { "instrument": "piglin", - "note": "14", + "note": "12", "powered": "true" } }, @@ -143418,7 +146958,7 @@ "id": 1613, "properties": { "instrument": "piglin", - "note": "14", + "note": "12", "powered": "false" } }, @@ -143426,7 +146966,7 @@ "id": 1614, "properties": { "instrument": "piglin", - "note": "15", + "note": "13", "powered": "true" } }, @@ -143434,7 +146974,7 @@ "id": 1615, "properties": { "instrument": "piglin", - "note": "15", + "note": "13", "powered": "false" } }, @@ -143442,7 +146982,7 @@ "id": 1616, "properties": { "instrument": "piglin", - "note": "16", + "note": "14", "powered": "true" } }, @@ -143450,7 +146990,7 @@ "id": 1617, "properties": { "instrument": "piglin", - "note": "16", + "note": "14", "powered": "false" } }, @@ -143458,7 +146998,7 @@ "id": 1618, "properties": { "instrument": "piglin", - "note": "17", + "note": "15", "powered": "true" } }, @@ -143466,7 +147006,7 @@ "id": 1619, "properties": { "instrument": "piglin", - "note": "17", + "note": "15", "powered": "false" } }, @@ -143474,7 +147014,7 @@ "id": 1620, "properties": { "instrument": "piglin", - "note": "18", + "note": "16", "powered": "true" } }, @@ -143482,7 +147022,7 @@ "id": 1621, "properties": { "instrument": "piglin", - "note": "18", + "note": "16", "powered": "false" } }, @@ -143490,7 +147030,7 @@ "id": 1622, "properties": { "instrument": "piglin", - "note": "19", + "note": "17", "powered": "true" } }, @@ -143498,7 +147038,7 @@ "id": 1623, "properties": { "instrument": "piglin", - "note": "19", + "note": "17", "powered": "false" } }, @@ -143506,7 +147046,7 @@ "id": 1624, "properties": { "instrument": "piglin", - "note": "20", + "note": "18", "powered": "true" } }, @@ -143514,7 +147054,7 @@ "id": 1625, "properties": { "instrument": "piglin", - "note": "20", + "note": "18", "powered": "false" } }, @@ -143522,7 +147062,7 @@ "id": 1626, "properties": { "instrument": "piglin", - "note": "21", + "note": "19", "powered": "true" } }, @@ -143530,7 +147070,7 @@ "id": 1627, "properties": { "instrument": "piglin", - "note": "21", + "note": "19", "powered": "false" } }, @@ -143538,7 +147078,7 @@ "id": 1628, "properties": { "instrument": "piglin", - "note": "22", + "note": "20", "powered": "true" } }, @@ -143546,7 +147086,7 @@ "id": 1629, "properties": { "instrument": "piglin", - "note": "22", + "note": "20", "powered": "false" } }, @@ -143554,7 +147094,7 @@ "id": 1630, "properties": { "instrument": "piglin", - "note": "23", + "note": "21", "powered": "true" } }, @@ -143562,7 +147102,7 @@ "id": 1631, "properties": { "instrument": "piglin", - "note": "23", + "note": "21", "powered": "false" } }, @@ -143570,7 +147110,7 @@ "id": 1632, "properties": { "instrument": "piglin", - "note": "24", + "note": "22", "powered": "true" } }, @@ -143578,39 +147118,39 @@ "id": 1633, "properties": { "instrument": "piglin", - "note": "24", + "note": "22", "powered": "false" } }, { "id": 1634, "properties": { - "instrument": "custom_head", - "note": "0", + "instrument": "piglin", + "note": "23", "powered": "true" } }, { "id": 1635, "properties": { - "instrument": "custom_head", - "note": "0", + "instrument": "piglin", + "note": "23", "powered": "false" } }, { "id": 1636, "properties": { - "instrument": "custom_head", - "note": "1", + "instrument": "piglin", + "note": "24", "powered": "true" } }, { "id": 1637, "properties": { - "instrument": "custom_head", - "note": "1", + "instrument": "piglin", + "note": "24", "powered": "false" } }, @@ -143618,7 +147158,7 @@ "id": 1638, "properties": { "instrument": "custom_head", - "note": "2", + "note": "0", "powered": "true" } }, @@ -143626,7 +147166,7 @@ "id": 1639, "properties": { "instrument": "custom_head", - "note": "2", + "note": "0", "powered": "false" } }, @@ -143634,7 +147174,7 @@ "id": 1640, "properties": { "instrument": "custom_head", - "note": "3", + "note": "1", "powered": "true" } }, @@ -143642,7 +147182,7 @@ "id": 1641, "properties": { "instrument": "custom_head", - "note": "3", + "note": "1", "powered": "false" } }, @@ -143650,7 +147190,7 @@ "id": 1642, "properties": { "instrument": "custom_head", - "note": "4", + "note": "2", "powered": "true" } }, @@ -143658,7 +147198,7 @@ "id": 1643, "properties": { "instrument": "custom_head", - "note": "4", + "note": "2", "powered": "false" } }, @@ -143666,7 +147206,7 @@ "id": 1644, "properties": { "instrument": "custom_head", - "note": "5", + "note": "3", "powered": "true" } }, @@ -143674,7 +147214,7 @@ "id": 1645, "properties": { "instrument": "custom_head", - "note": "5", + "note": "3", "powered": "false" } }, @@ -143682,7 +147222,7 @@ "id": 1646, "properties": { "instrument": "custom_head", - "note": "6", + "note": "4", "powered": "true" } }, @@ -143690,7 +147230,7 @@ "id": 1647, "properties": { "instrument": "custom_head", - "note": "6", + "note": "4", "powered": "false" } }, @@ -143698,7 +147238,7 @@ "id": 1648, "properties": { "instrument": "custom_head", - "note": "7", + "note": "5", "powered": "true" } }, @@ -143706,7 +147246,7 @@ "id": 1649, "properties": { "instrument": "custom_head", - "note": "7", + "note": "5", "powered": "false" } }, @@ -143714,7 +147254,7 @@ "id": 1650, "properties": { "instrument": "custom_head", - "note": "8", + "note": "6", "powered": "true" } }, @@ -143722,7 +147262,7 @@ "id": 1651, "properties": { "instrument": "custom_head", - "note": "8", + "note": "6", "powered": "false" } }, @@ -143730,7 +147270,7 @@ "id": 1652, "properties": { "instrument": "custom_head", - "note": "9", + "note": "7", "powered": "true" } }, @@ -143738,7 +147278,7 @@ "id": 1653, "properties": { "instrument": "custom_head", - "note": "9", + "note": "7", "powered": "false" } }, @@ -143746,7 +147286,7 @@ "id": 1654, "properties": { "instrument": "custom_head", - "note": "10", + "note": "8", "powered": "true" } }, @@ -143754,7 +147294,7 @@ "id": 1655, "properties": { "instrument": "custom_head", - "note": "10", + "note": "8", "powered": "false" } }, @@ -143762,7 +147302,7 @@ "id": 1656, "properties": { "instrument": "custom_head", - "note": "11", + "note": "9", "powered": "true" } }, @@ -143770,7 +147310,7 @@ "id": 1657, "properties": { "instrument": "custom_head", - "note": "11", + "note": "9", "powered": "false" } }, @@ -143778,7 +147318,7 @@ "id": 1658, "properties": { "instrument": "custom_head", - "note": "12", + "note": "10", "powered": "true" } }, @@ -143786,7 +147326,7 @@ "id": 1659, "properties": { "instrument": "custom_head", - "note": "12", + "note": "10", "powered": "false" } }, @@ -143794,7 +147334,7 @@ "id": 1660, "properties": { "instrument": "custom_head", - "note": "13", + "note": "11", "powered": "true" } }, @@ -143802,7 +147342,7 @@ "id": 1661, "properties": { "instrument": "custom_head", - "note": "13", + "note": "11", "powered": "false" } }, @@ -143810,7 +147350,7 @@ "id": 1662, "properties": { "instrument": "custom_head", - "note": "14", + "note": "12", "powered": "true" } }, @@ -143818,7 +147358,7 @@ "id": 1663, "properties": { "instrument": "custom_head", - "note": "14", + "note": "12", "powered": "false" } }, @@ -143826,7 +147366,7 @@ "id": 1664, "properties": { "instrument": "custom_head", - "note": "15", + "note": "13", "powered": "true" } }, @@ -143834,7 +147374,7 @@ "id": 1665, "properties": { "instrument": "custom_head", - "note": "15", + "note": "13", "powered": "false" } }, @@ -143842,7 +147382,7 @@ "id": 1666, "properties": { "instrument": "custom_head", - "note": "16", + "note": "14", "powered": "true" } }, @@ -143850,7 +147390,7 @@ "id": 1667, "properties": { "instrument": "custom_head", - "note": "16", + "note": "14", "powered": "false" } }, @@ -143858,7 +147398,7 @@ "id": 1668, "properties": { "instrument": "custom_head", - "note": "17", + "note": "15", "powered": "true" } }, @@ -143866,7 +147406,7 @@ "id": 1669, "properties": { "instrument": "custom_head", - "note": "17", + "note": "15", "powered": "false" } }, @@ -143874,7 +147414,7 @@ "id": 1670, "properties": { "instrument": "custom_head", - "note": "18", + "note": "16", "powered": "true" } }, @@ -143882,7 +147422,7 @@ "id": 1671, "properties": { "instrument": "custom_head", - "note": "18", + "note": "16", "powered": "false" } }, @@ -143890,7 +147430,7 @@ "id": 1672, "properties": { "instrument": "custom_head", - "note": "19", + "note": "17", "powered": "true" } }, @@ -143898,7 +147438,7 @@ "id": 1673, "properties": { "instrument": "custom_head", - "note": "19", + "note": "17", "powered": "false" } }, @@ -143906,7 +147446,7 @@ "id": 1674, "properties": { "instrument": "custom_head", - "note": "20", + "note": "18", "powered": "true" } }, @@ -143914,7 +147454,7 @@ "id": 1675, "properties": { "instrument": "custom_head", - "note": "20", + "note": "18", "powered": "false" } }, @@ -143922,7 +147462,7 @@ "id": 1676, "properties": { "instrument": "custom_head", - "note": "21", + "note": "19", "powered": "true" } }, @@ -143930,7 +147470,7 @@ "id": 1677, "properties": { "instrument": "custom_head", - "note": "21", + "note": "19", "powered": "false" } }, @@ -143938,7 +147478,7 @@ "id": 1678, "properties": { "instrument": "custom_head", - "note": "22", + "note": "20", "powered": "true" } }, @@ -143946,7 +147486,7 @@ "id": 1679, "properties": { "instrument": "custom_head", - "note": "22", + "note": "20", "powered": "false" } }, @@ -143954,7 +147494,7 @@ "id": 1680, "properties": { "instrument": "custom_head", - "note": "23", + "note": "21", "powered": "true" } }, @@ -143962,7 +147502,7 @@ "id": 1681, "properties": { "instrument": "custom_head", - "note": "23", + "note": "21", "powered": "false" } }, @@ -143970,12 +147510,44 @@ "id": 1682, "properties": { "instrument": "custom_head", - "note": "24", + "note": "22", "powered": "true" } }, { "id": 1683, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1684, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1685, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1686, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1687, "properties": { "instrument": "custom_head", "note": "24", @@ -144003,43 +147575,11 @@ ] }, "states": [ - { - "id": 8607, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8608, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8609, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8610, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 8611, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -144047,7 +147587,7 @@ "id": 8612, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -144055,7 +147595,7 @@ "id": 8613, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -144063,12 +147603,44 @@ "id": 8614, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8615, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8616, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8617, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8618, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8619, "properties": { "face": "wall", "facing": "north", @@ -144077,42 +147649,10 @@ }, { "default": true, - "id": 8616, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8617, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8618, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8619, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 8620, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -144120,7 +147660,7 @@ "id": 8621, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -144128,39 +147668,39 @@ "id": 8622, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8623, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 8624, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 8625, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 8626, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -144168,7 +147708,7 @@ "id": 8627, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -144176,7 +147716,7 @@ "id": 8628, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -144184,12 +147724,44 @@ "id": 8629, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 8630, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8631, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8632, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8633, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8634, "properties": { "face": "ceiling", "facing": "east", @@ -144224,52 +147796,12 @@ ] }, "states": [ - { - "id": 4586, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4587, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4588, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4589, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 4590, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144279,7 +147811,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144289,7 +147821,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144299,13 +147831,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 4594, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4595, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4596, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4597, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4598, "properties": { "facing": "north", "half": "lower", @@ -144315,7 +147887,7 @@ } }, { - "id": 4595, + "id": 4599, "properties": { "facing": "north", "half": "lower", @@ -144325,7 +147897,7 @@ } }, { - "id": 4596, + "id": 4600, "properties": { "facing": "north", "half": "lower", @@ -144336,51 +147908,11 @@ }, { "default": true, - "id": 4597, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4598, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4599, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4600, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 4601, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144388,9 +147920,9 @@ { "id": 4602, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -144398,9 +147930,9 @@ { "id": 4603, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -144408,9 +147940,9 @@ { "id": 4604, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -144418,9 +147950,9 @@ { "id": 4605, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -144430,7 +147962,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144440,7 +147972,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144450,7 +147982,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144460,7 +147992,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144469,8 +148001,8 @@ "id": 4610, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -144479,8 +148011,8 @@ "id": 4611, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -144489,8 +148021,8 @@ "id": 4612, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -144499,8 +148031,8 @@ "id": 4613, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -144510,7 +148042,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144520,7 +148052,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144530,7 +148062,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144540,7 +148072,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144548,9 +148080,9 @@ { "id": 4618, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -144558,9 +148090,9 @@ { "id": 4619, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -144568,9 +148100,9 @@ { "id": 4620, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -144578,9 +148110,9 @@ { "id": 4621, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -144590,7 +148122,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144600,7 +148132,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144610,7 +148142,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144620,7 +148152,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144629,8 +148161,8 @@ "id": 4626, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -144639,8 +148171,8 @@ "id": 4627, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -144649,8 +148181,8 @@ "id": 4628, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -144659,8 +148191,8 @@ "id": 4629, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -144670,7 +148202,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144680,7 +148212,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144690,7 +148222,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144700,7 +148232,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144708,9 +148240,9 @@ { "id": 4634, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -144718,9 +148250,9 @@ { "id": 4635, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -144728,9 +148260,9 @@ { "id": 4636, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -144738,9 +148270,9 @@ { "id": 4637, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -144750,7 +148282,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144760,7 +148292,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144770,7 +148302,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -144780,7 +148312,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -144789,8 +148321,8 @@ "id": 4642, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -144799,8 +148331,8 @@ "id": 4643, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -144809,8 +148341,8 @@ "id": 4644, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -144819,8 +148351,8 @@ "id": 4645, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -144830,7 +148362,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -144840,7 +148372,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -144850,13 +148382,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 4649, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4650, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4651, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4652, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4653, "properties": { "facing": "east", "half": "lower", @@ -144891,52 +148463,12 @@ ] }, "states": [ - { - "id": 5813, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5814, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5815, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5816, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 5817, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -144946,7 +148478,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -144956,7 +148488,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -144966,7 +148498,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -144975,8 +148507,8 @@ "id": 5821, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -144985,8 +148517,8 @@ "id": 5822, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -144995,8 +148527,8 @@ "id": 5823, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -145005,8 +148537,8 @@ "id": 5824, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -145016,7 +148548,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -145026,7 +148558,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -145036,7 +148568,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -145046,7 +148578,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -145054,9 +148586,9 @@ { "id": 5829, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -145064,9 +148596,9 @@ { "id": 5830, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -145074,9 +148606,9 @@ { "id": 5831, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -145084,9 +148616,9 @@ { "id": 5832, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -145096,7 +148628,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -145106,7 +148638,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -145116,7 +148648,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -145126,7 +148658,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -145135,8 +148667,8 @@ "id": 5837, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -145145,8 +148677,8 @@ "id": 5838, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -145155,8 +148687,8 @@ "id": 5839, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -145165,8 +148697,8 @@ "id": 5840, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -145176,7 +148708,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -145186,13 +148718,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 5843, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5844, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5845, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5846, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5847, "properties": { "east": "false", "north": "false", @@ -145203,7 +148775,7 @@ }, { "default": true, - "id": 5844, + "id": 5848, "properties": { "east": "false", "north": "false", @@ -145236,47 +148808,11 @@ ] }, "states": [ - { - "id": 6993, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 6994, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 6995, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 6996, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 6997, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -145285,13 +148821,49 @@ "id": 6998, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } }, { "id": 6999, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7000, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7001, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7002, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7003, "properties": { "facing": "north", "in_wall": "false", @@ -145301,7 +148873,7 @@ }, { "default": true, - "id": 7000, + "id": 7004, "properties": { "facing": "north", "in_wall": "false", @@ -145309,47 +148881,11 @@ "powered": "false" } }, - { - "id": 7001, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7002, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 7003, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7004, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 7005, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -145358,7 +148894,7 @@ "id": 7006, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -145367,7 +148903,7 @@ "id": 7007, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -145376,7 +148912,7 @@ "id": 7008, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -145384,8 +148920,8 @@ { "id": 7009, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "true" } @@ -145393,8 +148929,8 @@ { "id": 7010, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "false" } @@ -145402,8 +148938,8 @@ { "id": 7011, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "true" } @@ -145411,8 +148947,8 @@ { "id": 7012, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "false" } @@ -145421,7 +148957,7 @@ "id": 7013, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -145430,7 +148966,7 @@ "id": 7014, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -145439,7 +148975,7 @@ "id": 7015, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -145448,7 +148984,7 @@ "id": 7016, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -145456,8 +148992,8 @@ { "id": 7017, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "true" } @@ -145465,8 +149001,8 @@ { "id": 7018, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "false" } @@ -145474,8 +149010,8 @@ { "id": 7019, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "true" } @@ -145483,8 +149019,8 @@ { "id": 7020, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "false" } @@ -145493,7 +149029,7 @@ "id": 7021, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -145502,7 +149038,7 @@ "id": 7022, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -145511,13 +149047,49 @@ "id": 7023, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } }, { "id": 7024, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7025, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7026, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7027, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7028, "properties": { "facing": "east", "in_wall": "false", @@ -145557,43 +149129,11 @@ ] }, "states": [ - { - "id": 4830, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4831, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4832, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4833, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 4834, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -145601,7 +149141,7 @@ "id": 4835, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -145609,7 +149149,7 @@ "id": 4836, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -145617,7 +149157,7 @@ "id": 4837, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -145625,7 +149165,7 @@ "id": 4838, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -145633,7 +149173,7 @@ "id": 4839, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -145641,7 +149181,7 @@ "id": 4840, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -145649,7 +149189,7 @@ "id": 4841, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -145657,7 +149197,7 @@ "id": 4842, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -145665,7 +149205,7 @@ "id": 4843, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -145673,7 +149213,7 @@ "id": 4844, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -145681,7 +149221,7 @@ "id": 4845, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -145689,7 +149229,7 @@ "id": 4846, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -145697,7 +149237,7 @@ "id": 4847, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -145705,7 +149245,7 @@ "id": 4848, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -145713,7 +149253,7 @@ "id": 4849, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -145721,7 +149261,7 @@ "id": 4850, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -145729,7 +149269,7 @@ "id": 4851, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -145737,7 +149277,7 @@ "id": 4852, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -145745,7 +149285,7 @@ "id": 4853, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -145753,7 +149293,7 @@ "id": 4854, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -145761,7 +149301,7 @@ "id": 4855, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -145769,7 +149309,7 @@ "id": 4856, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -145777,7 +149317,7 @@ "id": 4857, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -145785,7 +149325,7 @@ "id": 4858, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -145793,7 +149333,7 @@ "id": 4859, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -145801,7 +149341,7 @@ "id": 4860, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -145809,12 +149349,44 @@ "id": 4861, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 4862, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4863, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4864, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4865, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4866, "properties": { "attached": "false", "rotation": "0", @@ -145823,50 +149395,18 @@ }, { "default": true, - "id": 4863, + "id": 4867, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 4864, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4865, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4866, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4867, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4868, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -145874,7 +149414,7 @@ "id": 4869, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -145882,7 +149422,7 @@ "id": 4870, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -145890,7 +149430,7 @@ "id": 4871, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -145898,7 +149438,7 @@ "id": 4872, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -145906,7 +149446,7 @@ "id": 4873, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -145914,7 +149454,7 @@ "id": 4874, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -145922,7 +149462,7 @@ "id": 4875, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -145930,7 +149470,7 @@ "id": 4876, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -145938,7 +149478,7 @@ "id": 4877, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -145946,7 +149486,7 @@ "id": 4878, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -145954,7 +149494,7 @@ "id": 4879, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -145962,7 +149502,7 @@ "id": 4880, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -145970,7 +149510,7 @@ "id": 4881, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -145978,7 +149518,7 @@ "id": 4882, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -145986,7 +149526,7 @@ "id": 4883, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -145994,7 +149534,7 @@ "id": 4884, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -146002,7 +149542,7 @@ "id": 4885, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -146010,7 +149550,7 @@ "id": 4886, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -146018,7 +149558,7 @@ "id": 4887, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -146026,7 +149566,7 @@ "id": 4888, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -146034,7 +149574,7 @@ "id": 4889, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -146042,7 +149582,7 @@ "id": 4890, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -146050,7 +149590,7 @@ "id": 4891, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -146058,12 +149598,44 @@ "id": 4892, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4893, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4894, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4895, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4896, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4897, "properties": { "attached": "false", "rotation": "15", @@ -146093,42 +149665,10 @@ ] }, "states": [ - { - "id": 233, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 234, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 235, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 236, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 237, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -146136,7 +149676,7 @@ { "id": 238, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -146144,7 +149684,7 @@ { "id": 239, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -146152,7 +149692,7 @@ { "id": 240, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -146160,7 +149700,7 @@ { "id": 241, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -146168,7 +149708,7 @@ { "id": 242, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -146176,7 +149716,7 @@ { "id": 243, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -146184,7 +149724,7 @@ { "id": 244, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -146192,7 +149732,7 @@ { "id": 245, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -146200,7 +149740,7 @@ { "id": 246, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -146208,7 +149748,7 @@ { "id": 247, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -146216,7 +149756,7 @@ { "id": 248, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -146224,7 +149764,7 @@ { "id": 249, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -146232,7 +149772,7 @@ { "id": 250, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -146240,7 +149780,7 @@ { "id": 251, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -146248,7 +149788,7 @@ { "id": 252, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -146256,7 +149796,7 @@ { "id": 253, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -146264,7 +149804,7 @@ { "id": 254, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "false" } @@ -146272,7 +149812,7 @@ { "id": 255, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "true" } @@ -146280,7 +149820,7 @@ { "id": 256, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "false" } @@ -146288,7 +149828,7 @@ { "id": 257, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "true" } @@ -146296,13 +149836,45 @@ { "id": 258, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "false" } }, { "id": 259, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 260, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 261, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 262, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 263, "properties": { "distance": "7", "persistent": "false", @@ -146311,7 +149883,7 @@ }, { "default": true, - "id": 260, + "id": 264, "properties": { "distance": "7", "persistent": "false", @@ -146330,20 +149902,20 @@ }, "states": [ { - "id": 126, + "id": 130, "properties": { "axis": "x" } }, { "default": true, - "id": 127, + "id": 131, "properties": { "axis": "y" } }, { - "id": 128, + "id": 132, "properties": { "axis": "z" } @@ -146367,14 +149939,14 @@ }, "states": [ { - "id": 5712, + "id": 5716, "properties": { "powered": "true" } }, { "default": true, - "id": 5713, + "id": 5717, "properties": { "powered": "false" } @@ -146431,7 +150003,7 @@ }, "states": [ { - "id": 4298, + "id": 4302, "properties": { "rotation": "0", "waterlogged": "true" @@ -146439,217 +150011,217 @@ }, { "default": true, - "id": 4299, + "id": 4303, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4300, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4301, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4302, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4303, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4304, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, { "id": 4305, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, { "id": 4306, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, { "id": 4307, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, { "id": 4308, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, { "id": 4309, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, { "id": 4310, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, { "id": 4311, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, { "id": 4312, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, { "id": 4313, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, { "id": 4314, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, { "id": 4315, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, { "id": 4316, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, { "id": 4317, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, { "id": 4318, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, { "id": 4319, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, { "id": 4320, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, { "id": 4321, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, { "id": 4322, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, { "id": 4323, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, { "id": 4324, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, { "id": 4325, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, { "id": 4326, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, { "id": 4327, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, { "id": 4328, "properties": { - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4329, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4330, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4331, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4332, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4333, "properties": { "rotation": "15", "waterlogged": "false" @@ -146671,21 +150243,21 @@ }, "states": [ { - "id": 11017, + "id": 11021, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11018, + "id": 11022, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11019, + "id": 11023, "properties": { "type": "bottom", "waterlogged": "true" @@ -146693,21 +150265,21 @@ }, { "default": true, - "id": 11020, + "id": 11024, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11021, + "id": 11025, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11022, + "id": 11026, "properties": { "type": "double", "waterlogged": "false" @@ -146740,48 +150312,12 @@ ] }, "states": [ - { - "id": 2870, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2871, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2872, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2873, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 2874, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -146790,7 +150326,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -146799,7 +150335,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -146808,7 +150344,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -146817,7 +150353,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -146826,12 +150362,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 2880, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2881, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2882, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2883, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2884, "properties": { "facing": "north", "half": "bottom", @@ -146841,47 +150413,11 @@ }, { "default": true, - "id": 2881, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2882, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2883, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2884, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 2885, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -146890,7 +150426,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -146899,7 +150435,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -146908,7 +150444,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -146917,43 +150453,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 2890, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 2891, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 2892, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 2893, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -146962,7 +150498,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -146971,7 +150507,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -146980,7 +150516,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -146989,7 +150525,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -146998,7 +150534,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -147007,7 +150543,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -147015,8 +150551,8 @@ "id": 2900, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -147024,8 +150560,8 @@ "id": 2901, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -147033,8 +150569,8 @@ "id": 2902, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -147042,8 +150578,8 @@ "id": 2903, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -147052,7 +150588,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -147061,7 +150597,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -147070,7 +150606,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -147079,7 +150615,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -147088,7 +150624,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -147097,43 +150633,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 2910, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 2911, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 2912, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 2913, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -147142,7 +150678,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -147151,7 +150687,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -147160,7 +150696,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -147169,7 +150705,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -147178,7 +150714,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -147187,7 +150723,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -147195,8 +150731,8 @@ "id": 2920, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -147204,8 +150740,8 @@ "id": 2921, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -147213,8 +150749,8 @@ "id": 2922, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -147222,8 +150758,8 @@ "id": 2923, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -147232,7 +150768,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -147241,7 +150777,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -147250,7 +150786,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -147259,7 +150795,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -147268,7 +150804,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -147277,43 +150813,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 2930, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 2931, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 2932, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 2933, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -147322,7 +150858,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -147331,7 +150867,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -147340,7 +150876,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -147349,7 +150885,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -147358,7 +150894,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -147367,7 +150903,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -147375,8 +150911,8 @@ "id": 2940, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -147384,8 +150920,8 @@ "id": 2941, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -147393,8 +150929,8 @@ "id": 2942, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -147402,8 +150938,8 @@ "id": 2943, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -147412,7 +150948,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -147421,7 +150957,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -147430,7 +150966,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -147439,7 +150975,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -147448,12 +150984,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 2949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2953, "properties": { "facing": "east", "half": "bottom", @@ -147489,52 +151061,12 @@ ] }, "states": [ - { - "id": 5958, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5959, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5960, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5961, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 5962, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147544,7 +151076,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -147554,7 +151086,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -147564,7 +151096,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -147573,8 +151105,8 @@ "id": 5966, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -147583,8 +151115,8 @@ "id": 5967, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -147593,8 +151125,8 @@ "id": 5968, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -147603,8 +151135,8 @@ "id": 5969, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -147614,7 +151146,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147624,13 +151156,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 5972, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5973, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5974, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5975, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5976, "properties": { "facing": "north", "half": "bottom", @@ -147641,7 +151213,7 @@ }, { "default": true, - "id": 5973, + "id": 5977, "properties": { "facing": "north", "half": "bottom", @@ -147650,52 +151222,12 @@ "waterlogged": "false" } }, - { - "id": 5974, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5975, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5976, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5977, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 5978, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147705,7 +151237,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -147715,7 +151247,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -147725,7 +151257,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -147734,8 +151266,8 @@ "id": 5982, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -147744,8 +151276,8 @@ "id": 5983, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -147754,8 +151286,8 @@ "id": 5984, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -147764,8 +151296,8 @@ "id": 5985, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -147775,7 +151307,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147785,7 +151317,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -147795,7 +151327,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -147805,7 +151337,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -147813,9 +151345,9 @@ { "id": 5990, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -147823,9 +151355,9 @@ { "id": 5991, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -147833,9 +151365,9 @@ { "id": 5992, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -147843,9 +151375,9 @@ { "id": 5993, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -147855,7 +151387,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147865,7 +151397,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -147875,7 +151407,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -147885,7 +151417,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -147894,8 +151426,8 @@ "id": 5998, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -147904,8 +151436,8 @@ "id": 5999, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -147914,8 +151446,8 @@ "id": 6000, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -147924,8 +151456,8 @@ "id": 6001, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -147935,7 +151467,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -147945,7 +151477,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -147955,7 +151487,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -147965,7 +151497,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -147973,9 +151505,9 @@ { "id": 6006, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -147983,9 +151515,9 @@ { "id": 6007, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -147993,9 +151525,9 @@ { "id": 6008, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -148003,9 +151535,9 @@ { "id": 6009, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -148015,7 +151547,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -148025,7 +151557,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -148035,7 +151567,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -148045,7 +151577,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -148054,8 +151586,8 @@ "id": 6014, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -148064,8 +151596,8 @@ "id": 6015, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -148074,8 +151606,8 @@ "id": 6016, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -148084,8 +151616,8 @@ "id": 6017, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -148095,7 +151627,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -148105,7 +151637,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -148115,13 +151647,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 6021, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6022, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6023, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6024, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6025, "properties": { "facing": "east", "half": "bottom", @@ -148147,7 +151719,7 @@ }, "states": [ { - "id": 5534, + "id": 5538, "properties": { "facing": "north", "waterlogged": "true" @@ -148155,49 +151727,49 @@ }, { "default": true, - "id": 5535, + "id": 5539, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5536, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5537, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5538, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5539, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5540, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5541, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5542, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5543, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5544, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5541, + "id": 5545, "properties": { "facing": "east", "waterlogged": "false" @@ -148220,7 +151792,7 @@ }, "states": [ { - "id": 4758, + "id": 4762, "properties": { "facing": "north", "waterlogged": "true" @@ -148228,49 +151800,49 @@ }, { "default": true, - "id": 4759, + "id": 4763, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4760, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4761, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4762, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4763, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4764, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4768, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4765, + "id": 4769, "properties": { "facing": "east", "waterlogged": "false" @@ -148288,20 +151860,20 @@ }, "states": [ { - "id": 185, + "id": 189, "properties": { "axis": "x" } }, { "default": true, - "id": 186, + "id": 190, "properties": { "axis": "y" } }, { - "id": 187, + "id": 191, "properties": { "axis": "z" } @@ -148325,35 +151897,35 @@ }, "states": [ { - "id": 12394, + "id": 12409, "properties": { "facing": "north", "powered": "true" } }, { - "id": 12395, + "id": 12410, "properties": { "facing": "north", "powered": "false" } }, { - "id": 12396, + "id": 12411, "properties": { "facing": "east", "powered": "true" } }, { - "id": 12397, + "id": 12412, "properties": { "facing": "east", "powered": "false" } }, { - "id": 12398, + "id": 12413, "properties": { "facing": "south", "powered": "true" @@ -148361,49 +151933,49 @@ }, { "default": true, - "id": 12399, + "id": 12414, "properties": { "facing": "south", "powered": "false" } }, { - "id": 12400, + "id": 12415, "properties": { "facing": "west", "powered": "true" } }, { - "id": 12401, + "id": 12416, "properties": { "facing": "west", "powered": "false" } }, { - "id": 12402, + "id": 12417, "properties": { "facing": "up", "powered": "true" } }, { - "id": 12403, + "id": 12418, "properties": { "facing": "up", "powered": "false" } }, { - "id": 12404, + "id": 12419, "properties": { "facing": "down", "powered": "true" } }, { - "id": 12405, + "id": 12420, "properties": { "facing": "down", "powered": "false" @@ -148415,7 +151987,7 @@ "states": [ { "default": true, - "id": 2350 + "id": 2354 } ] }, @@ -148429,20 +152001,20 @@ }, "states": [ { - "id": 23706, + "id": 24108, "properties": { "axis": "x" } }, { "default": true, - "id": 23707, + "id": 24109, "properties": { "axis": "y" } }, { - "id": 23708, + "id": 24110, "properties": { "axis": "z" } @@ -148473,97 +152045,97 @@ "states": [ { "default": true, - "id": 10630, + "id": 10634, "properties": { "rotation": "0" } }, { - "id": 10631, + "id": 10635, "properties": { "rotation": "1" } }, { - "id": 10632, + "id": 10636, "properties": { "rotation": "2" } }, { - "id": 10633, + "id": 10637, "properties": { "rotation": "3" } }, { - "id": 10634, + "id": 10638, "properties": { "rotation": "4" } }, { - "id": 10635, + "id": 10639, "properties": { "rotation": "5" } }, { - "id": 10636, + "id": 10640, "properties": { "rotation": "6" } }, { - "id": 10637, + "id": 10641, "properties": { "rotation": "7" } }, { - "id": 10638, + "id": 10642, "properties": { "rotation": "8" } }, { - "id": 10639, + "id": 10643, "properties": { "rotation": "9" } }, { - "id": 10640, + "id": 10644, "properties": { "rotation": "10" } }, { - "id": 10641, + "id": 10645, "properties": { "rotation": "11" } }, { - "id": 10642, + "id": 10646, "properties": { "rotation": "12" } }, { - "id": 10643, + "id": 10647, "properties": { "rotation": "13" } }, { - "id": 10644, + "id": 10648, "properties": { "rotation": "14" } }, { - "id": 10645, + "id": 10649, "properties": { "rotation": "15" } @@ -148589,7 +152161,7 @@ }, "states": [ { - "id": 1700, + "id": 1704, "properties": { "facing": "north", "occupied": "true", @@ -148597,7 +152169,7 @@ } }, { - "id": 1701, + "id": 1705, "properties": { "facing": "north", "occupied": "true", @@ -148605,7 +152177,7 @@ } }, { - "id": 1702, + "id": 1706, "properties": { "facing": "north", "occupied": "false", @@ -148614,49 +152186,17 @@ }, { "default": true, - "id": 1703, + "id": 1707, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1704, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1705, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1706, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1707, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1708, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -148664,7 +152204,7 @@ { "id": 1709, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -148672,7 +152212,7 @@ { "id": 1710, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -148680,7 +152220,7 @@ { "id": 1711, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -148688,7 +152228,7 @@ { "id": 1712, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -148696,7 +152236,7 @@ { "id": 1713, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -148704,13 +152244,45 @@ { "id": 1714, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1715, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1716, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1717, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1718, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1719, "properties": { "facing": "east", "occupied": "false", @@ -148738,7 +152310,7 @@ }, "states": [ { - "id": 20598, + "id": 20616, "properties": { "candles": "1", "lit": "true", @@ -148746,7 +152318,7 @@ } }, { - "id": 20599, + "id": 20617, "properties": { "candles": "1", "lit": "true", @@ -148754,7 +152326,7 @@ } }, { - "id": 20600, + "id": 20618, "properties": { "candles": "1", "lit": "false", @@ -148763,7 +152335,7 @@ }, { "default": true, - "id": 20601, + "id": 20619, "properties": { "candles": "1", "lit": "false", @@ -148771,7 +152343,7 @@ } }, { - "id": 20602, + "id": 20620, "properties": { "candles": "2", "lit": "true", @@ -148779,7 +152351,7 @@ } }, { - "id": 20603, + "id": 20621, "properties": { "candles": "2", "lit": "true", @@ -148787,7 +152359,7 @@ } }, { - "id": 20604, + "id": 20622, "properties": { "candles": "2", "lit": "false", @@ -148795,7 +152367,7 @@ } }, { - "id": 20605, + "id": 20623, "properties": { "candles": "2", "lit": "false", @@ -148803,7 +152375,7 @@ } }, { - "id": 20606, + "id": 20624, "properties": { "candles": "3", "lit": "true", @@ -148811,7 +152383,7 @@ } }, { - "id": 20607, + "id": 20625, "properties": { "candles": "3", "lit": "true", @@ -148819,7 +152391,7 @@ } }, { - "id": 20608, + "id": 20626, "properties": { "candles": "3", "lit": "false", @@ -148827,7 +152399,7 @@ } }, { - "id": 20609, + "id": 20627, "properties": { "candles": "3", "lit": "false", @@ -148835,7 +152407,7 @@ } }, { - "id": 20610, + "id": 20628, "properties": { "candles": "4", "lit": "true", @@ -148843,7 +152415,7 @@ } }, { - "id": 20611, + "id": 20629, "properties": { "candles": "4", "lit": "true", @@ -148851,7 +152423,7 @@ } }, { - "id": 20612, + "id": 20630, "properties": { "candles": "4", "lit": "false", @@ -148859,7 +152431,7 @@ } }, { - "id": 20613, + "id": 20631, "properties": { "candles": "4", "lit": "false", @@ -148877,14 +152449,14 @@ }, "states": [ { - "id": 20842, + "id": 20860, "properties": { "lit": "true" } }, { "default": true, - "id": 20843, + "id": 20861, "properties": { "lit": "false" } @@ -148895,7 +152467,7 @@ "states": [ { "default": true, - "id": 10584 + "id": 10588 } ] }, @@ -148903,7 +152475,7 @@ "states": [ { "default": true, - "id": 12573 + "id": 12588 } ] }, @@ -148911,7 +152483,7 @@ "states": [ { "default": true, - "id": 12589 + "id": 12604 } ] }, @@ -148927,25 +152499,25 @@ "states": [ { "default": true, - "id": 12512, + "id": 12527, "properties": { "facing": "north" } }, { - "id": 12513, + "id": 12528, "properties": { "facing": "south" } }, { - "id": 12514, + "id": 12529, "properties": { "facing": "west" } }, { - "id": 12515, + "id": 12530, "properties": { "facing": "east" } @@ -148965,38 +152537,38 @@ }, "states": [ { - "id": 12418, + "id": 12433, "properties": { "facing": "north" } }, { - "id": 12419, + "id": 12434, "properties": { "facing": "east" } }, { - "id": 12420, + "id": 12435, "properties": { "facing": "south" } }, { - "id": 12421, + "id": 12436, "properties": { "facing": "west" } }, { "default": true, - "id": 12422, + "id": 12437, "properties": { "facing": "up" } }, { - "id": 12423, + "id": 12438, "properties": { "facing": "down" } @@ -149007,7 +152579,7 @@ "states": [ { "default": true, - "id": 5943 + "id": 5947 } ] }, @@ -149035,52 +152607,12 @@ ] }, "states": [ - { - "id": 9260, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9261, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9262, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9263, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9264, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -149090,7 +152622,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -149100,7 +152632,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -149110,7 +152642,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -149119,8 +152651,8 @@ "id": 9268, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -149129,8 +152661,8 @@ "id": 9269, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -149139,8 +152671,8 @@ "id": 9270, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -149149,8 +152681,8 @@ "id": 9271, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -149160,7 +152692,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -149170,7 +152702,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -149180,7 +152712,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -149190,7 +152722,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -149198,9 +152730,9 @@ { "id": 9276, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -149208,9 +152740,9 @@ { "id": 9277, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -149218,9 +152750,9 @@ { "id": 9278, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -149228,9 +152760,9 @@ { "id": 9279, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -149240,7 +152772,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -149250,7 +152782,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -149260,7 +152792,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -149270,7 +152802,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -149279,8 +152811,8 @@ "id": 9284, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -149289,8 +152821,8 @@ "id": 9285, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -149299,8 +152831,8 @@ "id": 9286, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -149309,8 +152841,8 @@ "id": 9287, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -149320,7 +152852,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -149330,13 +152862,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9290, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9291, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9292, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9293, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9294, "properties": { "east": "false", "north": "false", @@ -149347,7 +152919,7 @@ }, { "default": true, - "id": 9291, + "id": 9295, "properties": { "east": "false", "north": "false", @@ -149362,7 +152934,7 @@ "states": [ { "default": true, - "id": 9213 + "id": 9217 } ] }, @@ -149370,7 +152942,7 @@ "states": [ { "default": true, - "id": 2078 + "id": 2082 } ] }, @@ -149386,25 +152958,25 @@ "states": [ { "default": true, - "id": 10874, + "id": 10878, "properties": { "facing": "north" } }, { - "id": 10875, + "id": 10879, "properties": { "facing": "south" } }, { - "id": 10876, + "id": 10880, "properties": { "facing": "west" } }, { - "id": 10877, + "id": 10881, "properties": { "facing": "east" } @@ -149415,7 +152987,7 @@ "states": [ { "default": true, - "id": 2044 + "id": 2048 } ] }, @@ -149423,7 +152995,7 @@ "states": [ { "default": true, - "id": 2081 + "id": 2085 } ] }, @@ -149431,7 +153003,7 @@ "states": [ { "default": true, - "id": 21161 + "id": 21563 } ] }, @@ -149439,7 +153011,7 @@ "states": [ { "default": true, - "id": 21167 + "id": 21569 } ] }, @@ -149457,21 +153029,21 @@ }, "states": [ { - "id": 21491, + "id": 21893, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21492, + "id": 21894, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21493, + "id": 21895, "properties": { "type": "bottom", "waterlogged": "true" @@ -149479,21 +153051,21 @@ }, { "default": true, - "id": 21494, + "id": 21896, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21495, + "id": 21897, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21496, + "id": 21898, "properties": { "type": "double", "waterlogged": "false" @@ -149527,7 +153099,7 @@ }, "states": [ { - "id": 21171, + "id": 21573, "properties": { "facing": "north", "half": "top", @@ -149536,7 +153108,7 @@ } }, { - "id": 21172, + "id": 21574, "properties": { "facing": "north", "half": "top", @@ -149545,7 +153117,7 @@ } }, { - "id": 21173, + "id": 21575, "properties": { "facing": "north", "half": "top", @@ -149554,7 +153126,7 @@ } }, { - "id": 21174, + "id": 21576, "properties": { "facing": "north", "half": "top", @@ -149563,7 +153135,7 @@ } }, { - "id": 21175, + "id": 21577, "properties": { "facing": "north", "half": "top", @@ -149572,7 +153144,7 @@ } }, { - "id": 21176, + "id": 21578, "properties": { "facing": "north", "half": "top", @@ -149581,7 +153153,7 @@ } }, { - "id": 21177, + "id": 21579, "properties": { "facing": "north", "half": "top", @@ -149590,7 +153162,7 @@ } }, { - "id": 21178, + "id": 21580, "properties": { "facing": "north", "half": "top", @@ -149599,7 +153171,7 @@ } }, { - "id": 21179, + "id": 21581, "properties": { "facing": "north", "half": "top", @@ -149608,7 +153180,7 @@ } }, { - "id": 21180, + "id": 21582, "properties": { "facing": "north", "half": "top", @@ -149617,7 +153189,7 @@ } }, { - "id": 21181, + "id": 21583, "properties": { "facing": "north", "half": "bottom", @@ -149627,7 +153199,7 @@ }, { "default": true, - "id": 21182, + "id": 21584, "properties": { "facing": "north", "half": "bottom", @@ -149636,7 +153208,7 @@ } }, { - "id": 21183, + "id": 21585, "properties": { "facing": "north", "half": "bottom", @@ -149645,7 +153217,7 @@ } }, { - "id": 21184, + "id": 21586, "properties": { "facing": "north", "half": "bottom", @@ -149654,7 +153226,7 @@ } }, { - "id": 21185, + "id": 21587, "properties": { "facing": "north", "half": "bottom", @@ -149663,7 +153235,7 @@ } }, { - "id": 21186, + "id": 21588, "properties": { "facing": "north", "half": "bottom", @@ -149672,7 +153244,7 @@ } }, { - "id": 21187, + "id": 21589, "properties": { "facing": "north", "half": "bottom", @@ -149681,7 +153253,7 @@ } }, { - "id": 21188, + "id": 21590, "properties": { "facing": "north", "half": "bottom", @@ -149690,7 +153262,7 @@ } }, { - "id": 21189, + "id": 21591, "properties": { "facing": "north", "half": "bottom", @@ -149699,7 +153271,7 @@ } }, { - "id": 21190, + "id": 21592, "properties": { "facing": "north", "half": "bottom", @@ -149708,7 +153280,7 @@ } }, { - "id": 21191, + "id": 21593, "properties": { "facing": "south", "half": "top", @@ -149717,7 +153289,7 @@ } }, { - "id": 21192, + "id": 21594, "properties": { "facing": "south", "half": "top", @@ -149726,7 +153298,7 @@ } }, { - "id": 21193, + "id": 21595, "properties": { "facing": "south", "half": "top", @@ -149735,7 +153307,7 @@ } }, { - "id": 21194, + "id": 21596, "properties": { "facing": "south", "half": "top", @@ -149744,7 +153316,7 @@ } }, { - "id": 21195, + "id": 21597, "properties": { "facing": "south", "half": "top", @@ -149753,7 +153325,7 @@ } }, { - "id": 21196, + "id": 21598, "properties": { "facing": "south", "half": "top", @@ -149762,7 +153334,7 @@ } }, { - "id": 21197, + "id": 21599, "properties": { "facing": "south", "half": "top", @@ -149771,7 +153343,7 @@ } }, { - "id": 21198, + "id": 21600, "properties": { "facing": "south", "half": "top", @@ -149780,7 +153352,7 @@ } }, { - "id": 21199, + "id": 21601, "properties": { "facing": "south", "half": "top", @@ -149789,7 +153361,7 @@ } }, { - "id": 21200, + "id": 21602, "properties": { "facing": "south", "half": "top", @@ -149798,7 +153370,7 @@ } }, { - "id": 21201, + "id": 21603, "properties": { "facing": "south", "half": "bottom", @@ -149807,7 +153379,7 @@ } }, { - "id": 21202, + "id": 21604, "properties": { "facing": "south", "half": "bottom", @@ -149816,7 +153388,7 @@ } }, { - "id": 21203, + "id": 21605, "properties": { "facing": "south", "half": "bottom", @@ -149825,7 +153397,7 @@ } }, { - "id": 21204, + "id": 21606, "properties": { "facing": "south", "half": "bottom", @@ -149834,7 +153406,7 @@ } }, { - "id": 21205, + "id": 21607, "properties": { "facing": "south", "half": "bottom", @@ -149843,7 +153415,7 @@ } }, { - "id": 21206, + "id": 21608, "properties": { "facing": "south", "half": "bottom", @@ -149852,7 +153424,7 @@ } }, { - "id": 21207, + "id": 21609, "properties": { "facing": "south", "half": "bottom", @@ -149861,7 +153433,7 @@ } }, { - "id": 21208, + "id": 21610, "properties": { "facing": "south", "half": "bottom", @@ -149870,7 +153442,7 @@ } }, { - "id": 21209, + "id": 21611, "properties": { "facing": "south", "half": "bottom", @@ -149879,7 +153451,7 @@ } }, { - "id": 21210, + "id": 21612, "properties": { "facing": "south", "half": "bottom", @@ -149888,7 +153460,7 @@ } }, { - "id": 21211, + "id": 21613, "properties": { "facing": "west", "half": "top", @@ -149897,7 +153469,7 @@ } }, { - "id": 21212, + "id": 21614, "properties": { "facing": "west", "half": "top", @@ -149906,7 +153478,7 @@ } }, { - "id": 21213, + "id": 21615, "properties": { "facing": "west", "half": "top", @@ -149915,7 +153487,7 @@ } }, { - "id": 21214, + "id": 21616, "properties": { "facing": "west", "half": "top", @@ -149924,7 +153496,7 @@ } }, { - "id": 21215, + "id": 21617, "properties": { "facing": "west", "half": "top", @@ -149933,7 +153505,7 @@ } }, { - "id": 21216, + "id": 21618, "properties": { "facing": "west", "half": "top", @@ -149942,7 +153514,7 @@ } }, { - "id": 21217, + "id": 21619, "properties": { "facing": "west", "half": "top", @@ -149951,7 +153523,7 @@ } }, { - "id": 21218, + "id": 21620, "properties": { "facing": "west", "half": "top", @@ -149960,7 +153532,7 @@ } }, { - "id": 21219, + "id": 21621, "properties": { "facing": "west", "half": "top", @@ -149969,7 +153541,7 @@ } }, { - "id": 21220, + "id": 21622, "properties": { "facing": "west", "half": "top", @@ -149978,7 +153550,7 @@ } }, { - "id": 21221, + "id": 21623, "properties": { "facing": "west", "half": "bottom", @@ -149987,7 +153559,7 @@ } }, { - "id": 21222, + "id": 21624, "properties": { "facing": "west", "half": "bottom", @@ -149996,7 +153568,7 @@ } }, { - "id": 21223, + "id": 21625, "properties": { "facing": "west", "half": "bottom", @@ -150005,7 +153577,7 @@ } }, { - "id": 21224, + "id": 21626, "properties": { "facing": "west", "half": "bottom", @@ -150014,7 +153586,7 @@ } }, { - "id": 21225, + "id": 21627, "properties": { "facing": "west", "half": "bottom", @@ -150023,7 +153595,7 @@ } }, { - "id": 21226, + "id": 21628, "properties": { "facing": "west", "half": "bottom", @@ -150032,7 +153604,7 @@ } }, { - "id": 21227, + "id": 21629, "properties": { "facing": "west", "half": "bottom", @@ -150041,7 +153613,7 @@ } }, { - "id": 21228, + "id": 21630, "properties": { "facing": "west", "half": "bottom", @@ -150050,7 +153622,7 @@ } }, { - "id": 21229, + "id": 21631, "properties": { "facing": "west", "half": "bottom", @@ -150059,7 +153631,7 @@ } }, { - "id": 21230, + "id": 21632, "properties": { "facing": "west", "half": "bottom", @@ -150068,7 +153640,7 @@ } }, { - "id": 21231, + "id": 21633, "properties": { "facing": "east", "half": "top", @@ -150077,7 +153649,7 @@ } }, { - "id": 21232, + "id": 21634, "properties": { "facing": "east", "half": "top", @@ -150086,7 +153658,7 @@ } }, { - "id": 21233, + "id": 21635, "properties": { "facing": "east", "half": "top", @@ -150095,7 +153667,7 @@ } }, { - "id": 21234, + "id": 21636, "properties": { "facing": "east", "half": "top", @@ -150104,7 +153676,7 @@ } }, { - "id": 21235, + "id": 21637, "properties": { "facing": "east", "half": "top", @@ -150113,7 +153685,7 @@ } }, { - "id": 21236, + "id": 21638, "properties": { "facing": "east", "half": "top", @@ -150122,7 +153694,7 @@ } }, { - "id": 21237, + "id": 21639, "properties": { "facing": "east", "half": "top", @@ -150131,7 +153703,7 @@ } }, { - "id": 21238, + "id": 21640, "properties": { "facing": "east", "half": "top", @@ -150140,7 +153712,7 @@ } }, { - "id": 21239, + "id": 21641, "properties": { "facing": "east", "half": "top", @@ -150149,7 +153721,7 @@ } }, { - "id": 21240, + "id": 21642, "properties": { "facing": "east", "half": "top", @@ -150158,7 +153730,7 @@ } }, { - "id": 21241, + "id": 21643, "properties": { "facing": "east", "half": "bottom", @@ -150167,7 +153739,7 @@ } }, { - "id": 21242, + "id": 21644, "properties": { "facing": "east", "half": "bottom", @@ -150176,7 +153748,7 @@ } }, { - "id": 21243, + "id": 21645, "properties": { "facing": "east", "half": "bottom", @@ -150185,7 +153757,7 @@ } }, { - "id": 21244, + "id": 21646, "properties": { "facing": "east", "half": "bottom", @@ -150194,7 +153766,7 @@ } }, { - "id": 21245, + "id": 21647, "properties": { "facing": "east", "half": "bottom", @@ -150203,7 +153775,7 @@ } }, { - "id": 21246, + "id": 21648, "properties": { "facing": "east", "half": "bottom", @@ -150212,7 +153784,7 @@ } }, { - "id": 21247, + "id": 21649, "properties": { "facing": "east", "half": "bottom", @@ -150221,7 +153793,7 @@ } }, { - "id": 21248, + "id": 21650, "properties": { "facing": "east", "half": "bottom", @@ -150230,7 +153802,7 @@ } }, { - "id": 21249, + "id": 21651, "properties": { "facing": "east", "half": "bottom", @@ -150239,7 +153811,7 @@ } }, { - "id": 21250, + "id": 21652, "properties": { "facing": "east", "half": "bottom", @@ -150253,7 +153825,7 @@ "states": [ { "default": true, - "id": 10601 + "id": 10605 } ] }, @@ -150261,7 +153833,7 @@ "states": [ { "default": true, - "id": 6538 + "id": 6542 } ] }, @@ -150275,20 +153847,20 @@ }, "states": [ { - "id": 23712, + "id": 24114, "properties": { "axis": "x" } }, { "default": true, - "id": 23713, + "id": 24115, "properties": { "axis": "y" } }, { - "id": 23714, + "id": 24116, "properties": { "axis": "z" } @@ -150304,14 +153876,14 @@ }, "states": [ { - "id": 10608, + "id": 10612, "properties": { "half": "upper" } }, { "default": true, - "id": 10609, + "id": 10613, "properties": { "half": "lower" } @@ -150332,21 +153904,21 @@ }, "states": [ { - "id": 11101, + "id": 11105, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11102, + "id": 11106, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11103, + "id": 11107, "properties": { "type": "bottom", "waterlogged": "true" @@ -150354,21 +153926,21 @@ }, { "default": true, - "id": 11104, + "id": 11108, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11105, + "id": 11109, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11106, + "id": 11110, "properties": { "type": "double", "waterlogged": "false" @@ -150400,97 +153972,97 @@ "states": [ { "default": true, - "id": 8943, + "id": 8947, "properties": { "rotation": "0" } }, { - "id": 8944, + "id": 8948, "properties": { "rotation": "1" } }, { - "id": 8945, + "id": 8949, "properties": { "rotation": "2" } }, { - "id": 8946, + "id": 8950, "properties": { "rotation": "3" } }, { - "id": 8947, + "id": 8951, "properties": { "rotation": "4" } }, { - "id": 8948, + "id": 8952, "properties": { "rotation": "5" } }, { - "id": 8949, + "id": 8953, "properties": { "rotation": "6" } }, { - "id": 8950, + "id": 8954, "properties": { "rotation": "7" } }, { - "id": 8951, + "id": 8955, "properties": { "rotation": "8" } }, { - "id": 8952, + "id": 8956, "properties": { "rotation": "9" } }, { - "id": 8953, + "id": 8957, "properties": { "rotation": "10" } }, { - "id": 8954, + "id": 8958, "properties": { "rotation": "11" } }, { - "id": 8955, + "id": 8959, "properties": { "rotation": "12" } }, { - "id": 8956, + "id": 8960, "properties": { "rotation": "13" } }, { - "id": 8957, + "id": 8961, "properties": { "rotation": "14" } }, { - "id": 8958, + "id": 8962, "properties": { "rotation": "15" } @@ -150509,25 +154081,25 @@ "states": [ { "default": true, - "id": 8959, + "id": 8963, "properties": { "facing": "north" } }, { - "id": 8960, + "id": 8964, "properties": { "facing": "south" } }, { - "id": 8961, + "id": 8965, "properties": { "facing": "west" } }, { - "id": 8962, + "id": 8966, "properties": { "facing": "east" } @@ -150558,97 +154130,97 @@ "states": [ { "default": true, - "id": 10710, + "id": 10714, "properties": { "rotation": "0" } }, { - "id": 10711, + "id": 10715, "properties": { "rotation": "1" } }, { - "id": 10712, + "id": 10716, "properties": { "rotation": "2" } }, { - "id": 10713, + "id": 10717, "properties": { "rotation": "3" } }, { - "id": 10714, + "id": 10718, "properties": { "rotation": "4" } }, { - "id": 10715, + "id": 10719, "properties": { "rotation": "5" } }, { - "id": 10716, + "id": 10720, "properties": { "rotation": "6" } }, { - "id": 10717, + "id": 10721, "properties": { "rotation": "7" } }, { - "id": 10718, + "id": 10722, "properties": { "rotation": "8" } }, { - "id": 10719, + "id": 10723, "properties": { "rotation": "9" } }, { - "id": 10720, + "id": 10724, "properties": { "rotation": "10" } }, { - "id": 10721, + "id": 10725, "properties": { "rotation": "11" } }, { - "id": 10722, + "id": 10726, "properties": { "rotation": "12" } }, { - "id": 10723, + "id": 10727, "properties": { "rotation": "13" } }, { - "id": 10724, + "id": 10728, "properties": { "rotation": "14" } }, { - "id": 10725, + "id": 10729, "properties": { "rotation": "15" } @@ -150674,7 +154246,7 @@ }, "states": [ { - "id": 1780, + "id": 1784, "properties": { "facing": "north", "occupied": "true", @@ -150682,7 +154254,7 @@ } }, { - "id": 1781, + "id": 1785, "properties": { "facing": "north", "occupied": "true", @@ -150690,7 +154262,7 @@ } }, { - "id": 1782, + "id": 1786, "properties": { "facing": "north", "occupied": "false", @@ -150699,49 +154271,17 @@ }, { "default": true, - "id": 1783, + "id": 1787, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1784, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1785, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1786, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1787, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1788, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -150749,7 +154289,7 @@ { "id": 1789, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -150757,7 +154297,7 @@ { "id": 1790, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -150765,7 +154305,7 @@ { "id": 1791, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -150773,7 +154313,7 @@ { "id": 1792, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -150781,7 +154321,7 @@ { "id": 1793, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -150789,13 +154329,45 @@ { "id": 1794, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1795, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1796, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1797, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1798, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1799, "properties": { "facing": "east", "occupied": "false", @@ -150823,7 +154395,7 @@ }, "states": [ { - "id": 20678, + "id": 20696, "properties": { "candles": "1", "lit": "true", @@ -150831,7 +154403,7 @@ } }, { - "id": 20679, + "id": 20697, "properties": { "candles": "1", "lit": "true", @@ -150839,7 +154411,7 @@ } }, { - "id": 20680, + "id": 20698, "properties": { "candles": "1", "lit": "false", @@ -150848,7 +154420,7 @@ }, { "default": true, - "id": 20681, + "id": 20699, "properties": { "candles": "1", "lit": "false", @@ -150856,7 +154428,7 @@ } }, { - "id": 20682, + "id": 20700, "properties": { "candles": "2", "lit": "true", @@ -150864,7 +154436,7 @@ } }, { - "id": 20683, + "id": 20701, "properties": { "candles": "2", "lit": "true", @@ -150872,7 +154444,7 @@ } }, { - "id": 20684, + "id": 20702, "properties": { "candles": "2", "lit": "false", @@ -150880,7 +154452,7 @@ } }, { - "id": 20685, + "id": 20703, "properties": { "candles": "2", "lit": "false", @@ -150888,7 +154460,7 @@ } }, { - "id": 20686, + "id": 20704, "properties": { "candles": "3", "lit": "true", @@ -150896,7 +154468,7 @@ } }, { - "id": 20687, + "id": 20705, "properties": { "candles": "3", "lit": "true", @@ -150904,7 +154476,7 @@ } }, { - "id": 20688, + "id": 20706, "properties": { "candles": "3", "lit": "false", @@ -150912,7 +154484,7 @@ } }, { - "id": 20689, + "id": 20707, "properties": { "candles": "3", "lit": "false", @@ -150920,7 +154492,7 @@ } }, { - "id": 20690, + "id": 20708, "properties": { "candles": "4", "lit": "true", @@ -150928,7 +154500,7 @@ } }, { - "id": 20691, + "id": 20709, "properties": { "candles": "4", "lit": "true", @@ -150936,7 +154508,7 @@ } }, { - "id": 20692, + "id": 20710, "properties": { "candles": "4", "lit": "false", @@ -150944,7 +154516,7 @@ } }, { - "id": 20693, + "id": 20711, "properties": { "candles": "4", "lit": "false", @@ -150962,14 +154534,14 @@ }, "states": [ { - "id": 20852, + "id": 20870, "properties": { "lit": "true" } }, { "default": true, - "id": 20853, + "id": 20871, "properties": { "lit": "false" } @@ -150980,7 +154552,7 @@ "states": [ { "default": true, - "id": 10589 + "id": 10593 } ] }, @@ -150988,7 +154560,7 @@ "states": [ { "default": true, - "id": 12578 + "id": 12593 } ] }, @@ -150996,7 +154568,7 @@ "states": [ { "default": true, - "id": 12594 + "id": 12609 } ] }, @@ -151012,25 +154584,25 @@ "states": [ { "default": true, - "id": 12532, + "id": 12547, "properties": { "facing": "north" } }, { - "id": 12533, + "id": 12548, "properties": { "facing": "south" } }, { - "id": 12534, + "id": 12549, "properties": { "facing": "west" } }, { - "id": 12535, + "id": 12550, "properties": { "facing": "east" } @@ -151055,112 +154627,112 @@ "states": [ { "default": true, - "id": 21970, + "id": 22372, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 21971, + "id": 22373, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 21972, + "id": 22374, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 21973, + "id": 22375, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 21974, + "id": 22376, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 21975, + "id": 22377, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 21976, + "id": 22378, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 21977, + "id": 22379, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 21978, + "id": 22380, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 21979, + "id": 22381, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 21980, + "id": 22382, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 21981, + "id": 22383, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 21982, + "id": 22384, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 21983, + "id": 22385, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 21984, + "id": 22386, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 21985, + "id": 22387, "properties": { "facing": "east", "flower_amount": "4" @@ -151181,38 +154753,38 @@ }, "states": [ { - "id": 12448, + "id": 12463, "properties": { "facing": "north" } }, { - "id": 12449, + "id": 12464, "properties": { "facing": "east" } }, { - "id": 12450, + "id": 12465, "properties": { "facing": "south" } }, { - "id": 12451, + "id": 12466, "properties": { "facing": "west" } }, { "default": true, - "id": 12452, + "id": 12467, "properties": { "facing": "up" } }, { - "id": 12453, + "id": 12468, "properties": { "facing": "down" } @@ -151223,7 +154795,7 @@ "states": [ { "default": true, - "id": 5948 + "id": 5952 } ] }, @@ -151251,52 +154823,12 @@ ] }, "states": [ - { - "id": 9420, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9421, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9422, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9423, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9424, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -151306,7 +154838,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -151316,7 +154848,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -151326,7 +154858,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -151335,8 +154867,8 @@ "id": 9428, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -151345,8 +154877,8 @@ "id": 9429, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -151355,8 +154887,8 @@ "id": 9430, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -151365,8 +154897,8 @@ "id": 9431, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -151376,7 +154908,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -151386,7 +154918,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -151396,7 +154928,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -151406,7 +154938,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -151414,9 +154946,9 @@ { "id": 9436, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -151424,9 +154956,9 @@ { "id": 9437, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -151434,9 +154966,9 @@ { "id": 9438, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -151444,9 +154976,9 @@ { "id": 9439, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -151456,7 +154988,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -151466,7 +154998,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -151476,7 +155008,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -151486,7 +155018,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -151495,8 +155027,8 @@ "id": 9444, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -151505,8 +155037,8 @@ "id": 9445, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -151515,8 +155047,8 @@ "id": 9446, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -151525,8 +155057,8 @@ "id": 9447, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -151536,7 +155068,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -151546,13 +155078,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9450, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9451, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9452, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9453, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9454, "properties": { "east": "false", "north": "false", @@ -151563,7 +155135,7 @@ }, { "default": true, - "id": 9451, + "id": 9455, "properties": { "east": "false", "north": "false", @@ -151578,7 +155150,7 @@ "states": [ { "default": true, - "id": 9218 + "id": 9222 } ] }, @@ -151586,7 +155158,7 @@ "states": [ { "default": true, - "id": 2080 + "id": 2084 } ] }, @@ -151602,25 +155174,25 @@ "states": [ { "default": true, - "id": 10894, + "id": 10898, "properties": { "facing": "north" } }, { - "id": 10895, + "id": 10899, "properties": { "facing": "south" } }, { - "id": 10896, + "id": 10900, "properties": { "facing": "west" } }, { - "id": 10897, + "id": 10901, "properties": { "facing": "east" } @@ -151631,7 +155203,7 @@ "states": [ { "default": true, - "id": 2049 + "id": 2053 } ] }, @@ -151652,42 +155224,42 @@ }, "states": [ { - "id": 2007, + "id": 2011, "properties": { "extended": "true", "facing": "north" } }, { - "id": 2008, + "id": 2012, "properties": { "extended": "true", "facing": "east" } }, { - "id": 2009, + "id": 2013, "properties": { "extended": "true", "facing": "south" } }, { - "id": 2010, + "id": 2014, "properties": { "extended": "true", "facing": "west" } }, { - "id": 2011, + "id": 2015, "properties": { "extended": "true", "facing": "up" } }, { - "id": 2012, + "id": 2016, "properties": { "extended": "true", "facing": "down" @@ -151695,42 +155267,42 @@ }, { "default": true, - "id": 2013, + "id": 2017, "properties": { "extended": "false", "facing": "north" } }, { - "id": 2014, + "id": 2018, "properties": { "extended": "false", "facing": "east" } }, { - "id": 2015, + "id": 2019, "properties": { "extended": "false", "facing": "south" } }, { - "id": 2016, + "id": 2020, "properties": { "extended": "false", "facing": "west" } }, { - "id": 2017, + "id": 2021, "properties": { "extended": "false", "facing": "up" } }, { - "id": 2018, + "id": 2022, "properties": { "extended": "false", "facing": "down" @@ -151759,7 +155331,7 @@ }, "states": [ { - "id": 2019, + "id": 2023, "properties": { "type": "normal", "facing": "north", @@ -151767,7 +155339,7 @@ } }, { - "id": 2020, + "id": 2024, "properties": { "type": "sticky", "facing": "north", @@ -151776,42 +155348,10 @@ }, { "default": true, - "id": 2021, - "properties": { - "type": "normal", - "facing": "north", - "short": "false" - } - }, - { - "id": 2022, - "properties": { - "type": "sticky", - "facing": "north", - "short": "false" - } - }, - { - "id": 2023, - "properties": { - "type": "normal", - "facing": "east", - "short": "true" - } - }, - { - "id": 2024, - "properties": { - "type": "sticky", - "facing": "east", - "short": "true" - } - }, - { "id": 2025, "properties": { "type": "normal", - "facing": "east", + "facing": "north", "short": "false" } }, @@ -151819,7 +155359,7 @@ "id": 2026, "properties": { "type": "sticky", - "facing": "east", + "facing": "north", "short": "false" } }, @@ -151827,7 +155367,7 @@ "id": 2027, "properties": { "type": "normal", - "facing": "south", + "facing": "east", "short": "true" } }, @@ -151835,7 +155375,7 @@ "id": 2028, "properties": { "type": "sticky", - "facing": "south", + "facing": "east", "short": "true" } }, @@ -151843,7 +155383,7 @@ "id": 2029, "properties": { "type": "normal", - "facing": "south", + "facing": "east", "short": "false" } }, @@ -151851,7 +155391,7 @@ "id": 2030, "properties": { "type": "sticky", - "facing": "south", + "facing": "east", "short": "false" } }, @@ -151859,7 +155399,7 @@ "id": 2031, "properties": { "type": "normal", - "facing": "west", + "facing": "south", "short": "true" } }, @@ -151867,7 +155407,7 @@ "id": 2032, "properties": { "type": "sticky", - "facing": "west", + "facing": "south", "short": "true" } }, @@ -151875,7 +155415,7 @@ "id": 2033, "properties": { "type": "normal", - "facing": "west", + "facing": "south", "short": "false" } }, @@ -151883,7 +155423,7 @@ "id": 2034, "properties": { "type": "sticky", - "facing": "west", + "facing": "south", "short": "false" } }, @@ -151891,7 +155431,7 @@ "id": 2035, "properties": { "type": "normal", - "facing": "up", + "facing": "west", "short": "true" } }, @@ -151899,7 +155439,7 @@ "id": 2036, "properties": { "type": "sticky", - "facing": "up", + "facing": "west", "short": "true" } }, @@ -151907,7 +155447,7 @@ "id": 2037, "properties": { "type": "normal", - "facing": "up", + "facing": "west", "short": "false" } }, @@ -151915,7 +155455,7 @@ "id": 2038, "properties": { "type": "sticky", - "facing": "up", + "facing": "west", "short": "false" } }, @@ -151923,7 +155463,7 @@ "id": 2039, "properties": { "type": "normal", - "facing": "down", + "facing": "up", "short": "true" } }, @@ -151931,7 +155471,7 @@ "id": 2040, "properties": { "type": "sticky", - "facing": "down", + "facing": "up", "short": "true" } }, @@ -151939,7 +155479,7 @@ "id": 2041, "properties": { "type": "normal", - "facing": "down", + "facing": "up", "short": "false" } }, @@ -151947,9 +155487,152 @@ "id": 2042, "properties": { "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2043, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2044, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 2045, + "properties": { + "type": "normal", "facing": "down", "short": "false" } + }, + { + "id": 2046, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12356, + "properties": { + "age": "0", + "half": "upper" + } + }, + { + "default": true, + "id": 12357, + "properties": { + "age": "0", + "half": "lower" + } + }, + { + "id": 12358, + "properties": { + "age": "1", + "half": "upper" + } + }, + { + "id": 12359, + "properties": { + "age": "1", + "half": "lower" + } + }, + { + "id": 12360, + "properties": { + "age": "2", + "half": "upper" + } + }, + { + "id": 12361, + "properties": { + "age": "2", + "half": "lower" + } + }, + { + "id": 12362, + "properties": { + "age": "3", + "half": "upper" + } + }, + { + "id": 12363, + "properties": { + "age": "3", + "half": "lower" + } + }, + { + "id": 12364, + "properties": { + "age": "4", + "half": "upper" + } + }, + { + "id": 12365, + "properties": { + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12366, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12367, + "properties": { + "half": "lower" + } } ] }, @@ -151977,97 +155660,97 @@ "states": [ { "default": true, - "id": 8883, + "id": 8887, "properties": { "rotation": "0" } }, { - "id": 8884, + "id": 8888, "properties": { "rotation": "1" } }, { - "id": 8885, + "id": 8889, "properties": { "rotation": "2" } }, { - "id": 8886, + "id": 8890, "properties": { "rotation": "3" } }, { - "id": 8887, + "id": 8891, "properties": { "rotation": "4" } }, { - "id": 8888, + "id": 8892, "properties": { "rotation": "5" } }, { - "id": 8889, + "id": 8893, "properties": { "rotation": "6" } }, { - "id": 8890, + "id": 8894, "properties": { "rotation": "7" } }, { - "id": 8891, + "id": 8895, "properties": { "rotation": "8" } }, { - "id": 8892, + "id": 8896, "properties": { "rotation": "9" } }, { - "id": 8893, + "id": 8897, "properties": { "rotation": "10" } }, { - "id": 8894, + "id": 8898, "properties": { "rotation": "11" } }, { - "id": 8895, + "id": 8899, "properties": { "rotation": "12" } }, { - "id": 8896, + "id": 8900, "properties": { "rotation": "13" } }, { - "id": 8897, + "id": 8901, "properties": { "rotation": "14" } }, { - "id": 8898, + "id": 8902, "properties": { "rotation": "15" } @@ -152086,25 +155769,25 @@ "states": [ { "default": true, - "id": 8899, + "id": 8903, "properties": { "facing": "north" } }, { - "id": 8900, + "id": 8904, "properties": { "facing": "south" } }, { - "id": 8901, + "id": 8905, "properties": { "facing": "west" } }, { - "id": 8902, + "id": 8906, "properties": { "facing": "east" } @@ -152154,7 +155837,7 @@ }, "states": [ { - "id": 21891, + "id": 22293, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -152162,7 +155845,7 @@ } }, { - "id": 21892, + "id": 22294, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -152170,7 +155853,7 @@ } }, { - "id": 21893, + "id": 22295, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -152178,7 +155861,7 @@ } }, { - "id": 21894, + "id": 22296, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -152186,7 +155869,7 @@ } }, { - "id": 21895, + "id": 22297, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -152195,7 +155878,7 @@ }, { "default": true, - "id": 21896, + "id": 22298, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -152203,7 +155886,7 @@ } }, { - "id": 21897, + "id": 22299, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -152211,7 +155894,7 @@ } }, { - "id": 21898, + "id": 22300, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -152219,7 +155902,7 @@ } }, { - "id": 21899, + "id": 22301, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -152227,7 +155910,7 @@ } }, { - "id": 21900, + "id": 22302, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -152235,7 +155918,7 @@ } }, { - "id": 21901, + "id": 22303, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -152243,7 +155926,7 @@ } }, { - "id": 21902, + "id": 22304, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -152251,7 +155934,7 @@ } }, { - "id": 21903, + "id": 22305, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -152259,7 +155942,7 @@ } }, { - "id": 21904, + "id": 22306, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -152267,7 +155950,7 @@ } }, { - "id": 21905, + "id": 22307, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -152275,7 +155958,7 @@ } }, { - "id": 21906, + "id": 22308, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -152283,7 +155966,7 @@ } }, { - "id": 21907, + "id": 22309, "properties": { "thickness": "base", "vertical_direction": "up", @@ -152291,7 +155974,7 @@ } }, { - "id": 21908, + "id": 22310, "properties": { "thickness": "base", "vertical_direction": "up", @@ -152299,7 +155982,7 @@ } }, { - "id": 21909, + "id": 22311, "properties": { "thickness": "base", "vertical_direction": "down", @@ -152307,7 +155990,7 @@ } }, { - "id": 21910, + "id": 22312, "properties": { "thickness": "base", "vertical_direction": "down", @@ -152338,21 +156021,21 @@ }, "states": [ { - "id": 13989, + "id": 14007, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13990, + "id": 14008, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13991, + "id": 14009, "properties": { "type": "bottom", "waterlogged": "true" @@ -152360,21 +156043,21 @@ }, { "default": true, - "id": 13992, + "id": 14010, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13993, + "id": 14011, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13994, + "id": 14012, "properties": { "type": "double", "waterlogged": "false" @@ -152408,7 +156091,7 @@ }, "states": [ { - "id": 13763, + "id": 13781, "properties": { "facing": "north", "half": "top", @@ -152417,7 +156100,7 @@ } }, { - "id": 13764, + "id": 13782, "properties": { "facing": "north", "half": "top", @@ -152426,7 +156109,7 @@ } }, { - "id": 13765, + "id": 13783, "properties": { "facing": "north", "half": "top", @@ -152435,7 +156118,7 @@ } }, { - "id": 13766, + "id": 13784, "properties": { "facing": "north", "half": "top", @@ -152444,7 +156127,7 @@ } }, { - "id": 13767, + "id": 13785, "properties": { "facing": "north", "half": "top", @@ -152453,7 +156136,7 @@ } }, { - "id": 13768, + "id": 13786, "properties": { "facing": "north", "half": "top", @@ -152462,7 +156145,7 @@ } }, { - "id": 13769, + "id": 13787, "properties": { "facing": "north", "half": "top", @@ -152471,7 +156154,7 @@ } }, { - "id": 13770, + "id": 13788, "properties": { "facing": "north", "half": "top", @@ -152480,7 +156163,7 @@ } }, { - "id": 13771, + "id": 13789, "properties": { "facing": "north", "half": "top", @@ -152489,7 +156172,7 @@ } }, { - "id": 13772, + "id": 13790, "properties": { "facing": "north", "half": "top", @@ -152498,7 +156181,7 @@ } }, { - "id": 13773, + "id": 13791, "properties": { "facing": "north", "half": "bottom", @@ -152508,250 +156191,250 @@ }, { "default": true, - "id": 13774, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13775, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13776, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13777, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13778, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13779, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13780, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13781, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13782, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13783, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13784, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13785, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13786, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13787, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13788, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13789, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13790, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13791, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13792, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13793, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13794, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13795, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13796, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13797, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13798, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13799, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13800, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13801, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13802, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13803, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13804, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13805, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13806, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13807, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13808, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13809, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13810, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13811, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13812, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13813, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13814, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13815, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13816, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13817, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13818, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13819, "properties": { "facing": "south", "half": "bottom", @@ -152760,7 +156443,7 @@ } }, { - "id": 13802, + "id": 13820, "properties": { "facing": "south", "half": "bottom", @@ -152768,174 +156451,12 @@ "waterlogged": "false" } }, - { - "id": 13803, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13804, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13805, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13806, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13807, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13808, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13809, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13810, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13811, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13812, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13813, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13814, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13815, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13816, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13817, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13818, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13819, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13820, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13821, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -152943,175 +156464,337 @@ "id": 13822, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13823, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13824, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13825, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13826, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13827, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13828, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13829, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13830, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13831, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13832, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13833, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13834, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13835, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13836, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13837, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13838, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13839, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13840, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13841, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13842, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13843, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13844, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13845, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13846, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13847, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13848, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13849, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13850, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13851, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13852, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13853, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13854, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13855, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13856, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13857, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13858, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13859, "properties": { "facing": "east", "half": "bottom", @@ -153120,7 +156803,7 @@ } }, { - "id": 13842, + "id": 13860, "properties": { "facing": "east", "half": "bottom", @@ -153140,20 +156823,20 @@ }, "states": [ { - "id": 5852, + "id": 5856, "properties": { "axis": "x" } }, { "default": true, - "id": 5853, + "id": 5857, "properties": { "axis": "y" } }, { - "id": 5854, + "id": 5858, "properties": { "axis": "z" } @@ -153164,7 +156847,7 @@ "states": [ { "default": true, - "id": 19712 + "id": 19730 } ] }, @@ -153182,21 +156865,21 @@ }, "states": [ { - "id": 19716, + "id": 19734, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19717, + "id": 19735, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19718, + "id": 19736, "properties": { "type": "bottom", "waterlogged": "true" @@ -153204,21 +156887,21 @@ }, { "default": true, - "id": 19719, + "id": 19737, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19720, + "id": 19738, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19721, + "id": 19739, "properties": { "type": "double", "waterlogged": "false" @@ -153252,7 +156935,7 @@ }, "states": [ { - "id": 19722, + "id": 19740, "properties": { "facing": "north", "half": "top", @@ -153261,7 +156944,7 @@ } }, { - "id": 19723, + "id": 19741, "properties": { "facing": "north", "half": "top", @@ -153270,7 +156953,7 @@ } }, { - "id": 19724, + "id": 19742, "properties": { "facing": "north", "half": "top", @@ -153279,7 +156962,7 @@ } }, { - "id": 19725, + "id": 19743, "properties": { "facing": "north", "half": "top", @@ -153288,7 +156971,7 @@ } }, { - "id": 19726, + "id": 19744, "properties": { "facing": "north", "half": "top", @@ -153297,7 +156980,7 @@ } }, { - "id": 19727, + "id": 19745, "properties": { "facing": "north", "half": "top", @@ -153306,7 +156989,7 @@ } }, { - "id": 19728, + "id": 19746, "properties": { "facing": "north", "half": "top", @@ -153315,7 +156998,7 @@ } }, { - "id": 19729, + "id": 19747, "properties": { "facing": "north", "half": "top", @@ -153324,7 +157007,7 @@ } }, { - "id": 19730, + "id": 19748, "properties": { "facing": "north", "half": "top", @@ -153333,7 +157016,7 @@ } }, { - "id": 19731, + "id": 19749, "properties": { "facing": "north", "half": "top", @@ -153342,7 +157025,7 @@ } }, { - "id": 19732, + "id": 19750, "properties": { "facing": "north", "half": "bottom", @@ -153352,250 +157035,250 @@ }, { "default": true, - "id": 19733, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19734, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19735, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19736, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19737, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19738, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19739, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19740, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19741, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19742, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19743, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19744, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19745, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19746, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19747, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19748, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19749, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19750, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 19751, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 19752, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 19753, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 19754, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 19755, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 19756, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 19757, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 19758, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 19759, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 19760, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19761, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19762, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19763, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19764, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19765, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19766, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19767, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19768, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19769, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19770, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19771, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19772, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19773, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19774, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19775, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19776, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19778, "properties": { "facing": "south", "half": "bottom", @@ -153604,7 +157287,7 @@ } }, { - "id": 19761, + "id": 19779, "properties": { "facing": "south", "half": "bottom", @@ -153612,174 +157295,12 @@ "waterlogged": "false" } }, - { - "id": 19762, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19763, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19764, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19765, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19766, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19767, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19768, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19769, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19770, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19771, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19772, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19773, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19774, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19775, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19776, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19777, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19778, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19779, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 19780, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -153787,175 +157308,337 @@ "id": 19781, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 19782, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 19783, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 19784, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 19785, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 19786, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 19787, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 19788, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 19789, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 19790, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 19791, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 19792, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 19793, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 19794, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 19795, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 19796, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 19797, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 19798, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 19799, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 19800, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19801, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19802, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19803, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19804, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19805, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19806, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19807, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19808, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19809, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19810, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19811, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19812, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19813, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19814, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19815, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19816, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19818, "properties": { "facing": "east", "half": "bottom", @@ -153964,7 +157647,7 @@ } }, { - "id": 19801, + "id": 19819, "properties": { "facing": "east", "half": "bottom", @@ -154007,7 +157690,7 @@ }, "states": [ { - "id": 19802, + "id": 19820, "properties": { "east": "none", "north": "none", @@ -154018,7 +157701,7 @@ } }, { - "id": 19803, + "id": 19821, "properties": { "east": "none", "north": "none", @@ -154029,7 +157712,7 @@ } }, { - "id": 19804, + "id": 19822, "properties": { "east": "none", "north": "none", @@ -154041,210 +157724,12 @@ }, { "default": true, - "id": 19805, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19806, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19807, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19808, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19809, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19810, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19811, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19812, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19813, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19814, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19815, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19816, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19817, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19818, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19819, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19820, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19821, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19822, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 19823, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154254,8 +157739,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154265,8 +157750,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154276,8 +157761,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154287,8 +157772,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154298,8 +157783,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154309,8 +157794,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154320,8 +157805,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154331,8 +157816,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -154342,8 +157827,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -154353,8 +157838,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -154364,8 +157849,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -154375,8 +157860,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154386,8 +157871,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154397,8 +157882,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154407,9 +157892,9 @@ "id": 19838, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154418,9 +157903,9 @@ "id": 19839, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154429,9 +157914,9 @@ "id": 19840, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154440,9 +157925,9 @@ "id": 19841, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154451,9 +157936,9 @@ "id": 19842, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154462,9 +157947,9 @@ "id": 19843, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -154473,9 +157958,9 @@ "id": 19844, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -154484,9 +157969,9 @@ "id": 19845, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -154495,9 +157980,9 @@ "id": 19846, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -154506,9 +157991,9 @@ "id": 19847, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154517,9 +158002,9 @@ "id": 19848, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154528,9 +158013,9 @@ "id": 19849, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154539,9 +158024,9 @@ "id": 19850, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154550,9 +158035,9 @@ "id": 19851, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154561,9 +158046,9 @@ "id": 19852, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154572,9 +158057,9 @@ "id": 19853, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154583,9 +158068,9 @@ "id": 19854, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154594,9 +158079,9 @@ "id": 19855, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -154606,8 +158091,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -154617,8 +158102,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -154628,8 +158113,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -154639,8 +158124,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154650,8 +158135,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154661,8 +158146,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154672,8 +158157,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154683,8 +158168,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154694,8 +158179,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154705,8 +158190,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154716,8 +158201,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154727,8 +158212,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -154738,8 +158223,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -154749,8 +158234,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -154760,8 +158245,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -154771,8 +158256,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154782,8 +158267,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154793,8 +158278,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154803,9 +158288,9 @@ "id": 19874, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154814,9 +158299,9 @@ "id": 19875, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154825,9 +158310,9 @@ "id": 19876, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154836,9 +158321,9 @@ "id": 19877, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154847,9 +158332,9 @@ "id": 19878, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154858,9 +158343,9 @@ "id": 19879, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -154869,9 +158354,9 @@ "id": 19880, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -154880,9 +158365,9 @@ "id": 19881, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -154891,9 +158376,9 @@ "id": 19882, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -154902,9 +158387,9 @@ "id": 19883, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -154913,9 +158398,9 @@ "id": 19884, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -154924,9 +158409,9 @@ "id": 19885, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -154935,9 +158420,9 @@ "id": 19886, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -154946,9 +158431,9 @@ "id": 19887, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -154957,9 +158442,9 @@ "id": 19888, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -154968,9 +158453,9 @@ "id": 19889, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -154979,9 +158464,9 @@ "id": 19890, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -154990,9 +158475,9 @@ "id": 19891, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155002,8 +158487,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155013,8 +158498,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155024,8 +158509,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155035,8 +158520,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155046,8 +158531,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155057,8 +158542,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155068,8 +158553,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -155079,8 +158564,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -155090,8 +158575,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -155101,8 +158586,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -155112,8 +158597,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -155123,8 +158608,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155134,8 +158619,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155145,8 +158630,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155156,8 +158641,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155167,14 +158652,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 19908, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19909, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19910, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19911, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19912, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19913, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19914, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19915, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19916, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19917, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19918, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19919, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19920, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19921, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19922, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19923, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19924, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19925, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19926, "properties": { "east": "none", "north": "tall", @@ -155185,7 +158868,7 @@ } }, { - "id": 19909, + "id": 19927, "properties": { "east": "none", "north": "tall", @@ -155195,211 +158878,13 @@ "west": "tall" } }, - { - "id": 19910, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19911, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19912, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19913, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19914, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19915, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19916, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19917, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19918, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19919, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19920, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19921, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19922, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19923, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19924, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19925, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19926, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19927, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 19928, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155409,8 +158894,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155420,8 +158905,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155431,8 +158916,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155442,8 +158927,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155453,8 +158938,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155464,8 +158949,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -155475,8 +158960,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -155486,8 +158971,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -155497,8 +158982,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -155508,8 +158993,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -155519,8 +159004,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155530,8 +159015,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155541,8 +159026,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155552,8 +159037,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155563,8 +159048,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155574,8 +159059,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155585,8 +159070,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155595,9 +159080,9 @@ "id": 19946, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -155606,9 +159091,9 @@ "id": 19947, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -155617,9 +159102,9 @@ "id": 19948, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -155628,9 +159113,9 @@ "id": 19949, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -155639,9 +159124,9 @@ "id": 19950, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -155650,9 +159135,9 @@ "id": 19951, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155661,9 +159146,9 @@ "id": 19952, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155672,9 +159157,9 @@ "id": 19953, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155683,9 +159168,9 @@ "id": 19954, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155694,9 +159179,9 @@ "id": 19955, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155705,9 +159190,9 @@ "id": 19956, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155716,9 +159201,9 @@ "id": 19957, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155727,9 +159212,9 @@ "id": 19958, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -155738,9 +159223,9 @@ "id": 19959, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -155749,9 +159234,9 @@ "id": 19960, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -155760,9 +159245,9 @@ "id": 19961, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -155771,9 +159256,9 @@ "id": 19962, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -155782,9 +159267,9 @@ "id": 19963, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155794,8 +159279,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155805,8 +159290,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155816,8 +159301,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155827,8 +159312,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155838,8 +159323,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155849,8 +159334,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155860,8 +159345,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -155871,8 +159356,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -155882,8 +159367,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -155893,8 +159378,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -155904,8 +159389,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -155915,8 +159400,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -155926,8 +159411,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -155937,8 +159422,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -155948,8 +159433,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -155959,8 +159444,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -155970,8 +159455,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -155981,8 +159466,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -155991,9 +159476,9 @@ "id": 19982, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -156002,9 +159487,9 @@ "id": 19983, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -156013,9 +159498,9 @@ "id": 19984, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -156024,9 +159509,9 @@ "id": 19985, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -156035,9 +159520,9 @@ "id": 19986, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -156046,9 +159531,9 @@ "id": 19987, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -156057,9 +159542,9 @@ "id": 19988, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156068,9 +159553,9 @@ "id": 19989, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -156079,9 +159564,9 @@ "id": 19990, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -156090,9 +159575,9 @@ "id": 19991, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -156101,9 +159586,9 @@ "id": 19992, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -156112,9 +159597,9 @@ "id": 19993, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -156123,9 +159608,9 @@ "id": 19994, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -156134,9 +159619,9 @@ "id": 19995, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -156145,9 +159630,9 @@ "id": 19996, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -156156,9 +159641,9 @@ "id": 19997, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -156167,9 +159652,9 @@ "id": 19998, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -156178,9 +159663,9 @@ "id": 19999, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -156190,8 +159675,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156201,8 +159686,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -156212,8 +159697,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -156223,8 +159708,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -156234,8 +159719,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -156245,8 +159730,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -156256,8 +159741,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -156267,8 +159752,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -156278,8 +159763,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -156289,8 +159774,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -156300,8 +159785,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -156311,8 +159796,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -156322,8 +159807,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156333,8 +159818,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -156344,8 +159829,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -156355,14 +159840,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20016, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20017, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20018, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20019, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20020, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20021, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20022, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20023, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20024, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20025, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20026, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20027, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20028, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20029, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20030, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20031, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20032, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20033, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20034, "properties": { "east": "low", "north": "tall", @@ -156373,7 +160056,7 @@ } }, { - "id": 20017, + "id": 20035, "properties": { "east": "low", "north": "tall", @@ -156383,211 +160066,13 @@ "west": "tall" } }, - { - "id": 20018, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20019, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20020, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20021, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20022, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20023, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20024, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20025, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20026, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20027, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20028, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20029, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20030, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20031, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20032, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20033, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20034, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20035, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20036, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156597,8 +160082,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -156608,8 +160093,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -156619,8 +160104,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -156630,8 +160115,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -156641,8 +160126,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -156652,8 +160137,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -156663,8 +160148,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -156674,8 +160159,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -156685,8 +160170,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -156696,8 +160181,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -156707,8 +160192,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -156718,8 +160203,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156729,8 +160214,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -156740,8 +160225,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -156751,14 +160236,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20052, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20053, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20054, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20055, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20056, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20057, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20058, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20059, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20060, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20061, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20062, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20063, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20064, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20065, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20066, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20067, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20068, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20069, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20070, "properties": { "east": "tall", "north": "none", @@ -156769,7 +160452,7 @@ } }, { - "id": 20053, + "id": 20071, "properties": { "east": "tall", "north": "none", @@ -156779,211 +160462,13 @@ "west": "tall" } }, - { - "id": 20054, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20055, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20056, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20057, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20058, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20059, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20060, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20061, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20062, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20063, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20064, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20065, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20066, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20067, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20068, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20069, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20070, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20071, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20072, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -156993,8 +160478,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -157004,8 +160489,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -157015,8 +160500,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -157026,8 +160511,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -157037,8 +160522,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -157048,8 +160533,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -157059,8 +160544,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -157070,8 +160555,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -157081,8 +160566,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -157092,8 +160577,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -157103,8 +160588,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -157114,8 +160599,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -157125,8 +160610,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -157136,8 +160621,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -157147,14 +160632,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20088, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20089, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20090, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20091, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20092, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20093, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20094, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20095, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20096, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20097, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20098, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20099, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20100, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20101, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20102, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20103, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20104, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20105, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20106, "properties": { "east": "tall", "north": "low", @@ -157165,7 +160848,7 @@ } }, { - "id": 20089, + "id": 20107, "properties": { "east": "tall", "north": "low", @@ -157175,211 +160858,13 @@ "west": "tall" } }, - { - "id": 20090, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20091, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20092, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20093, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20094, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20095, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20096, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20097, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20098, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20099, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20100, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20101, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20102, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20103, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20104, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20105, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20106, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20107, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20108, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -157389,8 +160874,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -157400,8 +160885,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -157411,8 +160896,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -157422,8 +160907,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -157433,8 +160918,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -157444,8 +160929,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -157455,8 +160940,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -157466,8 +160951,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -157477,8 +160962,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -157488,8 +160973,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -157499,14 +160984,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 20120, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20121, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20122, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20123, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20124, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20125, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20126, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20127, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20128, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20129, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20130, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20131, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20132, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20133, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20134, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20135, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20136, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20137, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20138, "properties": { "east": "tall", "north": "tall", @@ -157517,7 +161200,7 @@ } }, { - "id": 20121, + "id": 20139, "properties": { "east": "tall", "north": "tall", @@ -157528,7 +161211,7 @@ } }, { - "id": 20122, + "id": 20140, "properties": { "east": "tall", "north": "tall", @@ -157539,7 +161222,7 @@ } }, { - "id": 20123, + "id": 20141, "properties": { "east": "tall", "north": "tall", @@ -157550,7 +161233,7 @@ } }, { - "id": 20124, + "id": 20142, "properties": { "east": "tall", "north": "tall", @@ -157561,7 +161244,7 @@ } }, { - "id": 20125, + "id": 20143, "properties": { "east": "tall", "north": "tall", @@ -157577,7 +161260,7 @@ "states": [ { "default": true, - "id": 19713 + "id": 19731 } ] }, @@ -157601,7 +161284,7 @@ }, "states": [ { - "id": 20215, + "id": 20233, "properties": { "face": "floor", "facing": "north", @@ -157609,7 +161292,7 @@ } }, { - "id": 20216, + "id": 20234, "properties": { "face": "floor", "facing": "north", @@ -157617,7 +161300,7 @@ } }, { - "id": 20217, + "id": 20235, "properties": { "face": "floor", "facing": "south", @@ -157625,7 +161308,7 @@ } }, { - "id": 20218, + "id": 20236, "properties": { "face": "floor", "facing": "south", @@ -157633,7 +161316,7 @@ } }, { - "id": 20219, + "id": 20237, "properties": { "face": "floor", "facing": "west", @@ -157641,7 +161324,7 @@ } }, { - "id": 20220, + "id": 20238, "properties": { "face": "floor", "facing": "west", @@ -157649,7 +161332,7 @@ } }, { - "id": 20221, + "id": 20239, "properties": { "face": "floor", "facing": "east", @@ -157657,7 +161340,7 @@ } }, { - "id": 20222, + "id": 20240, "properties": { "face": "floor", "facing": "east", @@ -157665,7 +161348,7 @@ } }, { - "id": 20223, + "id": 20241, "properties": { "face": "wall", "facing": "north", @@ -157674,7 +161357,7 @@ }, { "default": true, - "id": 20224, + "id": 20242, "properties": { "face": "wall", "facing": "north", @@ -157682,7 +161365,7 @@ } }, { - "id": 20225, + "id": 20243, "properties": { "face": "wall", "facing": "south", @@ -157690,7 +161373,7 @@ } }, { - "id": 20226, + "id": 20244, "properties": { "face": "wall", "facing": "south", @@ -157698,7 +161381,7 @@ } }, { - "id": 20227, + "id": 20245, "properties": { "face": "wall", "facing": "west", @@ -157706,7 +161389,7 @@ } }, { - "id": 20228, + "id": 20246, "properties": { "face": "wall", "facing": "west", @@ -157714,7 +161397,7 @@ } }, { - "id": 20229, + "id": 20247, "properties": { "face": "wall", "facing": "east", @@ -157722,7 +161405,7 @@ } }, { - "id": 20230, + "id": 20248, "properties": { "face": "wall", "facing": "east", @@ -157730,7 +161413,7 @@ } }, { - "id": 20231, + "id": 20249, "properties": { "face": "ceiling", "facing": "north", @@ -157738,7 +161421,7 @@ } }, { - "id": 20232, + "id": 20250, "properties": { "face": "ceiling", "facing": "north", @@ -157746,7 +161429,7 @@ } }, { - "id": 20233, + "id": 20251, "properties": { "face": "ceiling", "facing": "south", @@ -157754,7 +161437,7 @@ } }, { - "id": 20234, + "id": 20252, "properties": { "face": "ceiling", "facing": "south", @@ -157762,7 +161445,7 @@ } }, { - "id": 20235, + "id": 20253, "properties": { "face": "ceiling", "facing": "west", @@ -157770,7 +161453,7 @@ } }, { - "id": 20236, + "id": 20254, "properties": { "face": "ceiling", "facing": "west", @@ -157778,7 +161461,7 @@ } }, { - "id": 20237, + "id": 20255, "properties": { "face": "ceiling", "facing": "east", @@ -157786,7 +161469,7 @@ } }, { - "id": 20238, + "id": 20256, "properties": { "face": "ceiling", "facing": "east", @@ -157804,14 +161487,14 @@ }, "states": [ { - "id": 20213, + "id": 20231, "properties": { "powered": "true" } }, { "default": true, - "id": 20214, + "id": 20232, "properties": { "powered": "false" } @@ -157832,21 +161515,21 @@ }, "states": [ { - "id": 20207, + "id": 20225, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20208, + "id": 20226, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20209, + "id": 20227, "properties": { "type": "bottom", "waterlogged": "true" @@ -157854,21 +161537,21 @@ }, { "default": true, - "id": 20210, + "id": 20228, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20211, + "id": 20229, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20212, + "id": 20230, "properties": { "type": "double", "waterlogged": "false" @@ -157902,7 +161585,7 @@ }, "states": [ { - "id": 20127, + "id": 20145, "properties": { "facing": "north", "half": "top", @@ -157911,7 +161594,7 @@ } }, { - "id": 20128, + "id": 20146, "properties": { "facing": "north", "half": "top", @@ -157920,7 +161603,7 @@ } }, { - "id": 20129, + "id": 20147, "properties": { "facing": "north", "half": "top", @@ -157929,7 +161612,7 @@ } }, { - "id": 20130, + "id": 20148, "properties": { "facing": "north", "half": "top", @@ -157938,7 +161621,7 @@ } }, { - "id": 20131, + "id": 20149, "properties": { "facing": "north", "half": "top", @@ -157947,7 +161630,7 @@ } }, { - "id": 20132, + "id": 20150, "properties": { "facing": "north", "half": "top", @@ -157956,7 +161639,7 @@ } }, { - "id": 20133, + "id": 20151, "properties": { "facing": "north", "half": "top", @@ -157965,7 +161648,7 @@ } }, { - "id": 20134, + "id": 20152, "properties": { "facing": "north", "half": "top", @@ -157974,7 +161657,7 @@ } }, { - "id": 20135, + "id": 20153, "properties": { "facing": "north", "half": "top", @@ -157983,7 +161666,7 @@ } }, { - "id": 20136, + "id": 20154, "properties": { "facing": "north", "half": "top", @@ -157992,7 +161675,7 @@ } }, { - "id": 20137, + "id": 20155, "properties": { "facing": "north", "half": "bottom", @@ -158002,250 +161685,250 @@ }, { "default": true, - "id": 20138, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20139, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20140, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20141, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20142, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20143, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20144, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20145, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20146, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20147, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20148, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20149, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20150, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20151, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20152, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20153, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20154, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20155, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 20156, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 20157, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 20158, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 20159, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 20160, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 20161, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 20162, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 20163, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 20164, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 20165, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20166, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20167, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20168, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20169, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20170, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20171, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20172, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20173, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20174, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20181, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20182, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20183, "properties": { "facing": "south", "half": "bottom", @@ -158254,7 +161937,7 @@ } }, { - "id": 20166, + "id": 20184, "properties": { "facing": "south", "half": "bottom", @@ -158262,174 +161945,12 @@ "waterlogged": "false" } }, - { - "id": 20167, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20168, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20169, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20170, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20171, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20172, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20173, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20174, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20175, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20176, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20177, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20178, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20179, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20180, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20181, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20182, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20183, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20184, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 20185, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -158437,175 +161958,337 @@ "id": 20186, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 20187, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 20188, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 20189, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 20190, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 20191, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 20192, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 20193, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 20194, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 20195, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 20196, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 20197, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 20198, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 20199, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 20200, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 20201, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 20202, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 20203, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 20204, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 20205, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20206, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20207, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20208, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20209, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20210, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20211, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20212, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20213, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20214, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20221, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20222, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20223, "properties": { "facing": "east", "half": "bottom", @@ -158614,7 +162297,7 @@ } }, { - "id": 20206, + "id": 20224, "properties": { "facing": "east", "half": "bottom", @@ -158657,7 +162340,7 @@ }, "states": [ { - "id": 20239, + "id": 20257, "properties": { "east": "none", "north": "none", @@ -158668,7 +162351,7 @@ } }, { - "id": 20240, + "id": 20258, "properties": { "east": "none", "north": "none", @@ -158679,7 +162362,7 @@ } }, { - "id": 20241, + "id": 20259, "properties": { "east": "none", "north": "none", @@ -158691,210 +162374,12 @@ }, { "default": true, - "id": 20242, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20243, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20244, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20245, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20246, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20247, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20248, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20249, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20250, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20251, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20252, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20253, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20254, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20255, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20256, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20257, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20258, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20259, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 20260, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -158904,8 +162389,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -158915,8 +162400,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -158926,8 +162411,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -158937,8 +162422,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -158948,8 +162433,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -158959,8 +162444,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -158970,8 +162455,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -158981,8 +162466,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -158992,8 +162477,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159003,8 +162488,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159014,8 +162499,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159025,8 +162510,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159036,8 +162521,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159047,8 +162532,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159057,9 +162542,9 @@ "id": 20275, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159068,9 +162553,9 @@ "id": 20276, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159079,9 +162564,9 @@ "id": 20277, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159090,9 +162575,9 @@ "id": 20278, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159101,9 +162586,9 @@ "id": 20279, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159112,9 +162597,9 @@ "id": 20280, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159123,9 +162608,9 @@ "id": 20281, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159134,9 +162619,9 @@ "id": 20282, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159145,9 +162630,9 @@ "id": 20283, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159156,9 +162641,9 @@ "id": 20284, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159167,9 +162652,9 @@ "id": 20285, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159178,9 +162663,9 @@ "id": 20286, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159189,9 +162674,9 @@ "id": 20287, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159200,9 +162685,9 @@ "id": 20288, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159211,9 +162696,9 @@ "id": 20289, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159222,9 +162707,9 @@ "id": 20290, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159233,9 +162718,9 @@ "id": 20291, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159244,9 +162729,9 @@ "id": 20292, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159256,8 +162741,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159267,8 +162752,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159278,8 +162763,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159289,8 +162774,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159300,8 +162785,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159311,8 +162796,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159322,8 +162807,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159333,8 +162818,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159344,8 +162829,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159355,8 +162840,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159366,8 +162851,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159377,8 +162862,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159388,8 +162873,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159399,8 +162884,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159410,8 +162895,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159421,8 +162906,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159432,8 +162917,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159443,8 +162928,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159453,9 +162938,9 @@ "id": 20311, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159464,9 +162949,9 @@ "id": 20312, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159475,9 +162960,9 @@ "id": 20313, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159486,9 +162971,9 @@ "id": 20314, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159497,9 +162982,9 @@ "id": 20315, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159508,9 +162993,9 @@ "id": 20316, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159519,9 +163004,9 @@ "id": 20317, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159530,9 +163015,9 @@ "id": 20318, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159541,9 +163026,9 @@ "id": 20319, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159552,9 +163037,9 @@ "id": 20320, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159563,9 +163048,9 @@ "id": 20321, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159574,9 +163059,9 @@ "id": 20322, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159585,9 +163070,9 @@ "id": 20323, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159596,9 +163081,9 @@ "id": 20324, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159607,9 +163092,9 @@ "id": 20325, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159618,9 +163103,9 @@ "id": 20326, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159629,9 +163114,9 @@ "id": 20327, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159640,9 +163125,9 @@ "id": 20328, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159652,8 +163137,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159663,8 +163148,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159674,8 +163159,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159685,8 +163170,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -159696,8 +163181,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -159707,8 +163192,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -159718,8 +163203,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -159729,8 +163214,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -159740,8 +163225,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -159751,8 +163236,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -159762,8 +163247,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -159773,8 +163258,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -159784,8 +163269,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -159795,8 +163280,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -159806,8 +163291,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -159817,14 +163302,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20345, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20346, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20347, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20348, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20349, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20350, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20351, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20352, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20353, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20354, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20355, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20356, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20357, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20358, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20359, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20360, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20361, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20362, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20363, "properties": { "east": "none", "north": "tall", @@ -159835,7 +163518,7 @@ } }, { - "id": 20346, + "id": 20364, "properties": { "east": "none", "north": "tall", @@ -159845,211 +163528,13 @@ "west": "tall" } }, - { - "id": 20347, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20348, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20349, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20350, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20351, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20352, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20353, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20354, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20355, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20356, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20357, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20358, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20359, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20360, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20361, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20362, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20363, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20364, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20365, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160059,8 +163544,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160070,8 +163555,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160081,8 +163566,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160092,8 +163577,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160103,8 +163588,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160114,8 +163599,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160125,8 +163610,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160136,8 +163621,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160147,8 +163632,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160158,8 +163643,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160169,8 +163654,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160180,8 +163665,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160191,8 +163676,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160202,8 +163687,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160213,8 +163698,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160224,8 +163709,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160235,8 +163720,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160245,9 +163730,9 @@ "id": 20383, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160256,9 +163741,9 @@ "id": 20384, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160267,9 +163752,9 @@ "id": 20385, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160278,9 +163763,9 @@ "id": 20386, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160289,9 +163774,9 @@ "id": 20387, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160300,9 +163785,9 @@ "id": 20388, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160311,9 +163796,9 @@ "id": 20389, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160322,9 +163807,9 @@ "id": 20390, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160333,9 +163818,9 @@ "id": 20391, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160344,9 +163829,9 @@ "id": 20392, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160355,9 +163840,9 @@ "id": 20393, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160366,9 +163851,9 @@ "id": 20394, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160377,9 +163862,9 @@ "id": 20395, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160388,9 +163873,9 @@ "id": 20396, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160399,9 +163884,9 @@ "id": 20397, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160410,9 +163895,9 @@ "id": 20398, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160421,9 +163906,9 @@ "id": 20399, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160432,9 +163917,9 @@ "id": 20400, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160444,8 +163929,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160455,8 +163940,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160466,8 +163951,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160477,8 +163962,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160488,8 +163973,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160499,8 +163984,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160510,8 +163995,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160521,8 +164006,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160532,8 +164017,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160543,8 +164028,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160554,8 +164039,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160565,8 +164050,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160576,8 +164061,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160587,8 +164072,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160598,8 +164083,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160609,8 +164094,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160620,8 +164105,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160631,8 +164116,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160641,9 +164126,9 @@ "id": 20419, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160652,9 +164137,9 @@ "id": 20420, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160663,9 +164148,9 @@ "id": 20421, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160674,9 +164159,9 @@ "id": 20422, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160685,9 +164170,9 @@ "id": 20423, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160696,9 +164181,9 @@ "id": 20424, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160707,9 +164192,9 @@ "id": 20425, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160718,9 +164203,9 @@ "id": 20426, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160729,9 +164214,9 @@ "id": 20427, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160740,9 +164225,9 @@ "id": 20428, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160751,9 +164236,9 @@ "id": 20429, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160762,9 +164247,9 @@ "id": 20430, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160773,9 +164258,9 @@ "id": 20431, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160784,9 +164269,9 @@ "id": 20432, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160795,9 +164280,9 @@ "id": 20433, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160806,9 +164291,9 @@ "id": 20434, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160817,9 +164302,9 @@ "id": 20435, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160828,9 +164313,9 @@ "id": 20436, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160840,8 +164325,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160851,8 +164336,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160862,8 +164347,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -160873,8 +164358,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -160884,8 +164369,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -160895,8 +164380,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -160906,8 +164391,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -160917,8 +164402,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -160928,8 +164413,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -160939,8 +164424,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -160950,8 +164435,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -160961,8 +164446,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -160972,8 +164457,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -160983,8 +164468,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -160994,8 +164479,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -161005,14 +164490,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20453, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20454, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20455, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20456, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20457, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20458, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20459, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20460, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20461, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20462, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20463, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20464, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20465, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20466, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20467, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20468, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20469, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20470, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20471, "properties": { "east": "low", "north": "tall", @@ -161023,7 +164706,7 @@ } }, { - "id": 20454, + "id": 20472, "properties": { "east": "low", "north": "tall", @@ -161033,211 +164716,13 @@ "west": "tall" } }, - { - "id": 20455, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20456, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20457, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20458, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20459, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20460, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20461, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20462, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20463, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20464, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20465, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20466, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20467, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20468, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20469, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20470, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20471, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20472, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20473, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -161247,8 +164732,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -161258,8 +164743,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -161269,8 +164754,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -161280,8 +164765,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -161291,8 +164776,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -161302,8 +164787,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -161313,8 +164798,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -161324,8 +164809,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -161335,8 +164820,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -161346,8 +164831,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -161357,8 +164842,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -161368,8 +164853,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -161379,8 +164864,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -161390,8 +164875,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -161401,14 +164886,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20489, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20490, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20491, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20492, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20493, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20494, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20495, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20496, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20497, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20498, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20499, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20500, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20501, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20502, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20503, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20504, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20505, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20506, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20507, "properties": { "east": "tall", "north": "none", @@ -161419,7 +165102,7 @@ } }, { - "id": 20490, + "id": 20508, "properties": { "east": "tall", "north": "none", @@ -161429,211 +165112,13 @@ "west": "tall" } }, - { - "id": 20491, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20492, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20493, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20494, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20495, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20496, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20497, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20498, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20499, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20500, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20501, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20502, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20503, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20504, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20505, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20506, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20507, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20508, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20509, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -161643,8 +165128,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -161654,8 +165139,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -161665,8 +165150,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -161676,8 +165161,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -161687,8 +165172,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -161698,8 +165183,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -161709,8 +165194,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -161720,8 +165205,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -161731,8 +165216,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -161742,8 +165227,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -161753,8 +165238,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -161764,8 +165249,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -161775,8 +165260,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -161786,8 +165271,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -161797,14 +165282,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 20525, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20526, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20527, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20528, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20529, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20530, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20531, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20532, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20533, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20534, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20535, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20536, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20537, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20538, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20539, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20540, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20541, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20542, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20543, "properties": { "east": "tall", "north": "low", @@ -161815,7 +165498,7 @@ } }, { - "id": 20526, + "id": 20544, "properties": { "east": "tall", "north": "low", @@ -161825,211 +165508,13 @@ "west": "tall" } }, - { - "id": 20527, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20528, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20529, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20530, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20531, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20532, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20533, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20534, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20535, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20536, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20537, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20538, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20539, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20540, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20541, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20542, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20543, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20544, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 20545, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -162039,8 +165524,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -162050,8 +165535,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -162061,8 +165546,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -162072,8 +165557,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -162083,8 +165568,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -162094,8 +165579,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -162105,8 +165590,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -162116,8 +165601,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -162127,8 +165612,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -162138,8 +165623,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -162149,14 +165634,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 20557, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20558, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20559, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20560, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20561, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20562, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20563, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20564, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20565, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20566, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20567, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20568, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20569, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20570, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20571, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20572, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20573, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20574, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20575, "properties": { "east": "tall", "north": "tall", @@ -162167,7 +165850,7 @@ } }, { - "id": 20558, + "id": 20576, "properties": { "east": "tall", "north": "tall", @@ -162178,7 +165861,7 @@ } }, { - "id": 20559, + "id": 20577, "properties": { "east": "tall", "north": "tall", @@ -162189,7 +165872,7 @@ } }, { - "id": 20560, + "id": 20578, "properties": { "east": "tall", "north": "tall", @@ -162200,7 +165883,7 @@ } }, { - "id": 20561, + "id": 20579, "properties": { "east": "tall", "north": "tall", @@ -162211,7 +165894,7 @@ } }, { - "id": 20562, + "id": 20580, "properties": { "east": "tall", "north": "tall", @@ -162227,7 +165910,7 @@ "states": [ { "default": true, - "id": 22461 + "id": 22863 } ] }, @@ -162245,21 +165928,21 @@ }, "states": [ { - "id": 22542, + "id": 22944, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22543, + "id": 22945, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22544, + "id": 22946, "properties": { "type": "bottom", "waterlogged": "true" @@ -162267,21 +165950,21 @@ }, { "default": true, - "id": 22545, + "id": 22947, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22546, + "id": 22948, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22547, + "id": 22949, "properties": { "type": "double", "waterlogged": "false" @@ -162315,7 +165998,7 @@ }, "states": [ { - "id": 22462, + "id": 22864, "properties": { "facing": "north", "half": "top", @@ -162324,7 +166007,7 @@ } }, { - "id": 22463, + "id": 22865, "properties": { "facing": "north", "half": "top", @@ -162333,7 +166016,7 @@ } }, { - "id": 22464, + "id": 22866, "properties": { "facing": "north", "half": "top", @@ -162342,7 +166025,7 @@ } }, { - "id": 22465, + "id": 22867, "properties": { "facing": "north", "half": "top", @@ -162351,7 +166034,7 @@ } }, { - "id": 22466, + "id": 22868, "properties": { "facing": "north", "half": "top", @@ -162360,7 +166043,7 @@ } }, { - "id": 22467, + "id": 22869, "properties": { "facing": "north", "half": "top", @@ -162369,7 +166052,7 @@ } }, { - "id": 22468, + "id": 22870, "properties": { "facing": "north", "half": "top", @@ -162378,7 +166061,7 @@ } }, { - "id": 22469, + "id": 22871, "properties": { "facing": "north", "half": "top", @@ -162387,7 +166070,7 @@ } }, { - "id": 22470, + "id": 22872, "properties": { "facing": "north", "half": "top", @@ -162396,7 +166079,7 @@ } }, { - "id": 22471, + "id": 22873, "properties": { "facing": "north", "half": "top", @@ -162405,7 +166088,7 @@ } }, { - "id": 22472, + "id": 22874, "properties": { "facing": "north", "half": "bottom", @@ -162415,7 +166098,7 @@ }, { "default": true, - "id": 22473, + "id": 22875, "properties": { "facing": "north", "half": "bottom", @@ -162424,7 +166107,7 @@ } }, { - "id": 22474, + "id": 22876, "properties": { "facing": "north", "half": "bottom", @@ -162433,7 +166116,7 @@ } }, { - "id": 22475, + "id": 22877, "properties": { "facing": "north", "half": "bottom", @@ -162442,7 +166125,7 @@ } }, { - "id": 22476, + "id": 22878, "properties": { "facing": "north", "half": "bottom", @@ -162451,7 +166134,7 @@ } }, { - "id": 22477, + "id": 22879, "properties": { "facing": "north", "half": "bottom", @@ -162460,7 +166143,7 @@ } }, { - "id": 22478, + "id": 22880, "properties": { "facing": "north", "half": "bottom", @@ -162469,7 +166152,7 @@ } }, { - "id": 22479, + "id": 22881, "properties": { "facing": "north", "half": "bottom", @@ -162478,7 +166161,7 @@ } }, { - "id": 22480, + "id": 22882, "properties": { "facing": "north", "half": "bottom", @@ -162487,7 +166170,7 @@ } }, { - "id": 22481, + "id": 22883, "properties": { "facing": "north", "half": "bottom", @@ -162496,7 +166179,7 @@ } }, { - "id": 22482, + "id": 22884, "properties": { "facing": "south", "half": "top", @@ -162505,7 +166188,7 @@ } }, { - "id": 22483, + "id": 22885, "properties": { "facing": "south", "half": "top", @@ -162514,7 +166197,7 @@ } }, { - "id": 22484, + "id": 22886, "properties": { "facing": "south", "half": "top", @@ -162523,7 +166206,7 @@ } }, { - "id": 22485, + "id": 22887, "properties": { "facing": "south", "half": "top", @@ -162532,7 +166215,7 @@ } }, { - "id": 22486, + "id": 22888, "properties": { "facing": "south", "half": "top", @@ -162541,7 +166224,7 @@ } }, { - "id": 22487, + "id": 22889, "properties": { "facing": "south", "half": "top", @@ -162550,7 +166233,7 @@ } }, { - "id": 22488, + "id": 22890, "properties": { "facing": "south", "half": "top", @@ -162559,7 +166242,7 @@ } }, { - "id": 22489, + "id": 22891, "properties": { "facing": "south", "half": "top", @@ -162568,7 +166251,7 @@ } }, { - "id": 22490, + "id": 22892, "properties": { "facing": "south", "half": "top", @@ -162577,7 +166260,7 @@ } }, { - "id": 22491, + "id": 22893, "properties": { "facing": "south", "half": "top", @@ -162586,7 +166269,7 @@ } }, { - "id": 22492, + "id": 22894, "properties": { "facing": "south", "half": "bottom", @@ -162595,7 +166278,7 @@ } }, { - "id": 22493, + "id": 22895, "properties": { "facing": "south", "half": "bottom", @@ -162604,7 +166287,7 @@ } }, { - "id": 22494, + "id": 22896, "properties": { "facing": "south", "half": "bottom", @@ -162613,7 +166296,7 @@ } }, { - "id": 22495, + "id": 22897, "properties": { "facing": "south", "half": "bottom", @@ -162622,7 +166305,7 @@ } }, { - "id": 22496, + "id": 22898, "properties": { "facing": "south", "half": "bottom", @@ -162631,7 +166314,7 @@ } }, { - "id": 22497, + "id": 22899, "properties": { "facing": "south", "half": "bottom", @@ -162640,7 +166323,7 @@ } }, { - "id": 22498, + "id": 22900, "properties": { "facing": "south", "half": "bottom", @@ -162649,7 +166332,7 @@ } }, { - "id": 22499, + "id": 22901, "properties": { "facing": "south", "half": "bottom", @@ -162658,7 +166341,7 @@ } }, { - "id": 22500, + "id": 22902, "properties": { "facing": "south", "half": "bottom", @@ -162667,7 +166350,7 @@ } }, { - "id": 22501, + "id": 22903, "properties": { "facing": "south", "half": "bottom", @@ -162676,7 +166359,7 @@ } }, { - "id": 22502, + "id": 22904, "properties": { "facing": "west", "half": "top", @@ -162685,7 +166368,7 @@ } }, { - "id": 22503, + "id": 22905, "properties": { "facing": "west", "half": "top", @@ -162694,7 +166377,7 @@ } }, { - "id": 22504, + "id": 22906, "properties": { "facing": "west", "half": "top", @@ -162703,7 +166386,7 @@ } }, { - "id": 22505, + "id": 22907, "properties": { "facing": "west", "half": "top", @@ -162712,7 +166395,7 @@ } }, { - "id": 22506, + "id": 22908, "properties": { "facing": "west", "half": "top", @@ -162721,7 +166404,7 @@ } }, { - "id": 22507, + "id": 22909, "properties": { "facing": "west", "half": "top", @@ -162730,7 +166413,7 @@ } }, { - "id": 22508, + "id": 22910, "properties": { "facing": "west", "half": "top", @@ -162739,7 +166422,7 @@ } }, { - "id": 22509, + "id": 22911, "properties": { "facing": "west", "half": "top", @@ -162748,7 +166431,7 @@ } }, { - "id": 22510, + "id": 22912, "properties": { "facing": "west", "half": "top", @@ -162757,7 +166440,7 @@ } }, { - "id": 22511, + "id": 22913, "properties": { "facing": "west", "half": "top", @@ -162766,7 +166449,7 @@ } }, { - "id": 22512, + "id": 22914, "properties": { "facing": "west", "half": "bottom", @@ -162775,7 +166458,7 @@ } }, { - "id": 22513, + "id": 22915, "properties": { "facing": "west", "half": "bottom", @@ -162784,7 +166467,7 @@ } }, { - "id": 22514, + "id": 22916, "properties": { "facing": "west", "half": "bottom", @@ -162793,7 +166476,7 @@ } }, { - "id": 22515, + "id": 22917, "properties": { "facing": "west", "half": "bottom", @@ -162802,7 +166485,7 @@ } }, { - "id": 22516, + "id": 22918, "properties": { "facing": "west", "half": "bottom", @@ -162811,7 +166494,7 @@ } }, { - "id": 22517, + "id": 22919, "properties": { "facing": "west", "half": "bottom", @@ -162820,7 +166503,7 @@ } }, { - "id": 22518, + "id": 22920, "properties": { "facing": "west", "half": "bottom", @@ -162829,7 +166512,7 @@ } }, { - "id": 22519, + "id": 22921, "properties": { "facing": "west", "half": "bottom", @@ -162838,7 +166521,7 @@ } }, { - "id": 22520, + "id": 22922, "properties": { "facing": "west", "half": "bottom", @@ -162847,7 +166530,7 @@ } }, { - "id": 22521, + "id": 22923, "properties": { "facing": "west", "half": "bottom", @@ -162856,7 +166539,7 @@ } }, { - "id": 22522, + "id": 22924, "properties": { "facing": "east", "half": "top", @@ -162865,7 +166548,7 @@ } }, { - "id": 22523, + "id": 22925, "properties": { "facing": "east", "half": "top", @@ -162874,7 +166557,7 @@ } }, { - "id": 22524, + "id": 22926, "properties": { "facing": "east", "half": "top", @@ -162883,7 +166566,7 @@ } }, { - "id": 22525, + "id": 22927, "properties": { "facing": "east", "half": "top", @@ -162892,7 +166575,7 @@ } }, { - "id": 22526, + "id": 22928, "properties": { "facing": "east", "half": "top", @@ -162901,7 +166584,7 @@ } }, { - "id": 22527, + "id": 22929, "properties": { "facing": "east", "half": "top", @@ -162910,7 +166593,7 @@ } }, { - "id": 22528, + "id": 22930, "properties": { "facing": "east", "half": "top", @@ -162919,7 +166602,7 @@ } }, { - "id": 22529, + "id": 22931, "properties": { "facing": "east", "half": "top", @@ -162928,7 +166611,7 @@ } }, { - "id": 22530, + "id": 22932, "properties": { "facing": "east", "half": "top", @@ -162937,7 +166620,7 @@ } }, { - "id": 22531, + "id": 22933, "properties": { "facing": "east", "half": "top", @@ -162946,7 +166629,7 @@ } }, { - "id": 22532, + "id": 22934, "properties": { "facing": "east", "half": "bottom", @@ -162955,7 +166638,7 @@ } }, { - "id": 22533, + "id": 22935, "properties": { "facing": "east", "half": "bottom", @@ -162964,7 +166647,7 @@ } }, { - "id": 22534, + "id": 22936, "properties": { "facing": "east", "half": "bottom", @@ -162973,7 +166656,7 @@ } }, { - "id": 22535, + "id": 22937, "properties": { "facing": "east", "half": "bottom", @@ -162982,7 +166665,7 @@ } }, { - "id": 22536, + "id": 22938, "properties": { "facing": "east", "half": "bottom", @@ -162991,7 +166674,7 @@ } }, { - "id": 22537, + "id": 22939, "properties": { "facing": "east", "half": "bottom", @@ -163000,7 +166683,7 @@ } }, { - "id": 22538, + "id": 22940, "properties": { "facing": "east", "half": "bottom", @@ -163009,7 +166692,7 @@ } }, { - "id": 22539, + "id": 22941, "properties": { "facing": "east", "half": "bottom", @@ -163018,7 +166701,7 @@ } }, { - "id": 22540, + "id": 22942, "properties": { "facing": "east", "half": "bottom", @@ -163027,7 +166710,7 @@ } }, { - "id": 22541, + "id": 22943, "properties": { "facing": "east", "half": "bottom", @@ -163070,7 +166753,7 @@ }, "states": [ { - "id": 22548, + "id": 22950, "properties": { "east": "none", "north": "none", @@ -163081,7 +166764,7 @@ } }, { - "id": 22549, + "id": 22951, "properties": { "east": "none", "north": "none", @@ -163092,7 +166775,7 @@ } }, { - "id": 22550, + "id": 22952, "properties": { "east": "none", "north": "none", @@ -163104,7 +166787,7 @@ }, { "default": true, - "id": 22551, + "id": 22953, "properties": { "east": "none", "north": "none", @@ -163115,7 +166798,7 @@ } }, { - "id": 22552, + "id": 22954, "properties": { "east": "none", "north": "none", @@ -163126,7 +166809,7 @@ } }, { - "id": 22553, + "id": 22955, "properties": { "east": "none", "north": "none", @@ -163137,7 +166820,7 @@ } }, { - "id": 22554, + "id": 22956, "properties": { "east": "none", "north": "none", @@ -163148,7 +166831,7 @@ } }, { - "id": 22555, + "id": 22957, "properties": { "east": "none", "north": "none", @@ -163159,7 +166842,7 @@ } }, { - "id": 22556, + "id": 22958, "properties": { "east": "none", "north": "none", @@ -163170,7 +166853,7 @@ } }, { - "id": 22557, + "id": 22959, "properties": { "east": "none", "north": "none", @@ -163181,7 +166864,7 @@ } }, { - "id": 22558, + "id": 22960, "properties": { "east": "none", "north": "none", @@ -163192,7 +166875,7 @@ } }, { - "id": 22559, + "id": 22961, "properties": { "east": "none", "north": "none", @@ -163203,7 +166886,7 @@ } }, { - "id": 22560, + "id": 22962, "properties": { "east": "none", "north": "none", @@ -163214,7 +166897,7 @@ } }, { - "id": 22561, + "id": 22963, "properties": { "east": "none", "north": "none", @@ -163225,7 +166908,7 @@ } }, { - "id": 22562, + "id": 22964, "properties": { "east": "none", "north": "none", @@ -163236,7 +166919,7 @@ } }, { - "id": 22563, + "id": 22965, "properties": { "east": "none", "north": "none", @@ -163247,7 +166930,7 @@ } }, { - "id": 22564, + "id": 22966, "properties": { "east": "none", "north": "none", @@ -163258,7 +166941,7 @@ } }, { - "id": 22565, + "id": 22967, "properties": { "east": "none", "north": "none", @@ -163269,7 +166952,7 @@ } }, { - "id": 22566, + "id": 22968, "properties": { "east": "none", "north": "none", @@ -163280,7 +166963,7 @@ } }, { - "id": 22567, + "id": 22969, "properties": { "east": "none", "north": "none", @@ -163291,7 +166974,7 @@ } }, { - "id": 22568, + "id": 22970, "properties": { "east": "none", "north": "none", @@ -163302,7 +166985,7 @@ } }, { - "id": 22569, + "id": 22971, "properties": { "east": "none", "north": "none", @@ -163313,7 +166996,7 @@ } }, { - "id": 22570, + "id": 22972, "properties": { "east": "none", "north": "none", @@ -163324,7 +167007,7 @@ } }, { - "id": 22571, + "id": 22973, "properties": { "east": "none", "north": "none", @@ -163335,7 +167018,7 @@ } }, { - "id": 22572, + "id": 22974, "properties": { "east": "none", "north": "none", @@ -163346,7 +167029,7 @@ } }, { - "id": 22573, + "id": 22975, "properties": { "east": "none", "north": "none", @@ -163357,7 +167040,7 @@ } }, { - "id": 22574, + "id": 22976, "properties": { "east": "none", "north": "none", @@ -163368,7 +167051,7 @@ } }, { - "id": 22575, + "id": 22977, "properties": { "east": "none", "north": "none", @@ -163379,7 +167062,7 @@ } }, { - "id": 22576, + "id": 22978, "properties": { "east": "none", "north": "none", @@ -163390,7 +167073,7 @@ } }, { - "id": 22577, + "id": 22979, "properties": { "east": "none", "north": "none", @@ -163401,7 +167084,7 @@ } }, { - "id": 22578, + "id": 22980, "properties": { "east": "none", "north": "none", @@ -163412,7 +167095,7 @@ } }, { - "id": 22579, + "id": 22981, "properties": { "east": "none", "north": "none", @@ -163423,7 +167106,7 @@ } }, { - "id": 22580, + "id": 22982, "properties": { "east": "none", "north": "none", @@ -163434,7 +167117,7 @@ } }, { - "id": 22581, + "id": 22983, "properties": { "east": "none", "north": "none", @@ -163445,7 +167128,7 @@ } }, { - "id": 22582, + "id": 22984, "properties": { "east": "none", "north": "none", @@ -163456,7 +167139,7 @@ } }, { - "id": 22583, + "id": 22985, "properties": { "east": "none", "north": "none", @@ -163467,7 +167150,7 @@ } }, { - "id": 22584, + "id": 22986, "properties": { "east": "none", "north": "low", @@ -163478,7 +167161,7 @@ } }, { - "id": 22585, + "id": 22987, "properties": { "east": "none", "north": "low", @@ -163489,7 +167172,7 @@ } }, { - "id": 22586, + "id": 22988, "properties": { "east": "none", "north": "low", @@ -163500,7 +167183,7 @@ } }, { - "id": 22587, + "id": 22989, "properties": { "east": "none", "north": "low", @@ -163511,7 +167194,7 @@ } }, { - "id": 22588, + "id": 22990, "properties": { "east": "none", "north": "low", @@ -163522,7 +167205,7 @@ } }, { - "id": 22589, + "id": 22991, "properties": { "east": "none", "north": "low", @@ -163533,7 +167216,7 @@ } }, { - "id": 22590, + "id": 22992, "properties": { "east": "none", "north": "low", @@ -163544,7 +167227,7 @@ } }, { - "id": 22591, + "id": 22993, "properties": { "east": "none", "north": "low", @@ -163555,7 +167238,7 @@ } }, { - "id": 22592, + "id": 22994, "properties": { "east": "none", "north": "low", @@ -163566,7 +167249,7 @@ } }, { - "id": 22593, + "id": 22995, "properties": { "east": "none", "north": "low", @@ -163577,7 +167260,7 @@ } }, { - "id": 22594, + "id": 22996, "properties": { "east": "none", "north": "low", @@ -163588,7 +167271,7 @@ } }, { - "id": 22595, + "id": 22997, "properties": { "east": "none", "north": "low", @@ -163599,7 +167282,7 @@ } }, { - "id": 22596, + "id": 22998, "properties": { "east": "none", "north": "low", @@ -163610,7 +167293,7 @@ } }, { - "id": 22597, + "id": 22999, "properties": { "east": "none", "north": "low", @@ -163621,7 +167304,7 @@ } }, { - "id": 22598, + "id": 23000, "properties": { "east": "none", "north": "low", @@ -163632,7 +167315,7 @@ } }, { - "id": 22599, + "id": 23001, "properties": { "east": "none", "north": "low", @@ -163643,7 +167326,7 @@ } }, { - "id": 22600, + "id": 23002, "properties": { "east": "none", "north": "low", @@ -163654,7 +167337,7 @@ } }, { - "id": 22601, + "id": 23003, "properties": { "east": "none", "north": "low", @@ -163665,7 +167348,7 @@ } }, { - "id": 22602, + "id": 23004, "properties": { "east": "none", "north": "low", @@ -163676,7 +167359,7 @@ } }, { - "id": 22603, + "id": 23005, "properties": { "east": "none", "north": "low", @@ -163687,7 +167370,7 @@ } }, { - "id": 22604, + "id": 23006, "properties": { "east": "none", "north": "low", @@ -163698,7 +167381,7 @@ } }, { - "id": 22605, + "id": 23007, "properties": { "east": "none", "north": "low", @@ -163709,7 +167392,7 @@ } }, { - "id": 22606, + "id": 23008, "properties": { "east": "none", "north": "low", @@ -163720,7 +167403,7 @@ } }, { - "id": 22607, + "id": 23009, "properties": { "east": "none", "north": "low", @@ -163731,7 +167414,7 @@ } }, { - "id": 22608, + "id": 23010, "properties": { "east": "none", "north": "low", @@ -163742,7 +167425,7 @@ } }, { - "id": 22609, + "id": 23011, "properties": { "east": "none", "north": "low", @@ -163753,7 +167436,7 @@ } }, { - "id": 22610, + "id": 23012, "properties": { "east": "none", "north": "low", @@ -163764,7 +167447,7 @@ } }, { - "id": 22611, + "id": 23013, "properties": { "east": "none", "north": "low", @@ -163775,7 +167458,7 @@ } }, { - "id": 22612, + "id": 23014, "properties": { "east": "none", "north": "low", @@ -163786,7 +167469,7 @@ } }, { - "id": 22613, + "id": 23015, "properties": { "east": "none", "north": "low", @@ -163797,7 +167480,7 @@ } }, { - "id": 22614, + "id": 23016, "properties": { "east": "none", "north": "low", @@ -163808,7 +167491,7 @@ } }, { - "id": 22615, + "id": 23017, "properties": { "east": "none", "north": "low", @@ -163819,7 +167502,7 @@ } }, { - "id": 22616, + "id": 23018, "properties": { "east": "none", "north": "low", @@ -163830,7 +167513,7 @@ } }, { - "id": 22617, + "id": 23019, "properties": { "east": "none", "north": "low", @@ -163841,7 +167524,7 @@ } }, { - "id": 22618, + "id": 23020, "properties": { "east": "none", "north": "low", @@ -163852,7 +167535,7 @@ } }, { - "id": 22619, + "id": 23021, "properties": { "east": "none", "north": "low", @@ -163863,7 +167546,7 @@ } }, { - "id": 22620, + "id": 23022, "properties": { "east": "none", "north": "tall", @@ -163874,7 +167557,7 @@ } }, { - "id": 22621, + "id": 23023, "properties": { "east": "none", "north": "tall", @@ -163885,7 +167568,7 @@ } }, { - "id": 22622, + "id": 23024, "properties": { "east": "none", "north": "tall", @@ -163896,7 +167579,7 @@ } }, { - "id": 22623, + "id": 23025, "properties": { "east": "none", "north": "tall", @@ -163907,7 +167590,7 @@ } }, { - "id": 22624, + "id": 23026, "properties": { "east": "none", "north": "tall", @@ -163918,7 +167601,7 @@ } }, { - "id": 22625, + "id": 23027, "properties": { "east": "none", "north": "tall", @@ -163929,7 +167612,7 @@ } }, { - "id": 22626, + "id": 23028, "properties": { "east": "none", "north": "tall", @@ -163940,7 +167623,7 @@ } }, { - "id": 22627, + "id": 23029, "properties": { "east": "none", "north": "tall", @@ -163951,7 +167634,7 @@ } }, { - "id": 22628, + "id": 23030, "properties": { "east": "none", "north": "tall", @@ -163962,7 +167645,7 @@ } }, { - "id": 22629, + "id": 23031, "properties": { "east": "none", "north": "tall", @@ -163973,7 +167656,7 @@ } }, { - "id": 22630, + "id": 23032, "properties": { "east": "none", "north": "tall", @@ -163984,7 +167667,7 @@ } }, { - "id": 22631, + "id": 23033, "properties": { "east": "none", "north": "tall", @@ -163995,7 +167678,7 @@ } }, { - "id": 22632, + "id": 23034, "properties": { "east": "none", "north": "tall", @@ -164006,7 +167689,7 @@ } }, { - "id": 22633, + "id": 23035, "properties": { "east": "none", "north": "tall", @@ -164017,7 +167700,7 @@ } }, { - "id": 22634, + "id": 23036, "properties": { "east": "none", "north": "tall", @@ -164028,7 +167711,7 @@ } }, { - "id": 22635, + "id": 23037, "properties": { "east": "none", "north": "tall", @@ -164039,7 +167722,7 @@ } }, { - "id": 22636, + "id": 23038, "properties": { "east": "none", "north": "tall", @@ -164050,7 +167733,7 @@ } }, { - "id": 22637, + "id": 23039, "properties": { "east": "none", "north": "tall", @@ -164061,7 +167744,7 @@ } }, { - "id": 22638, + "id": 23040, "properties": { "east": "none", "north": "tall", @@ -164072,7 +167755,7 @@ } }, { - "id": 22639, + "id": 23041, "properties": { "east": "none", "north": "tall", @@ -164083,7 +167766,7 @@ } }, { - "id": 22640, + "id": 23042, "properties": { "east": "none", "north": "tall", @@ -164094,7 +167777,7 @@ } }, { - "id": 22641, + "id": 23043, "properties": { "east": "none", "north": "tall", @@ -164105,7 +167788,7 @@ } }, { - "id": 22642, + "id": 23044, "properties": { "east": "none", "north": "tall", @@ -164116,7 +167799,7 @@ } }, { - "id": 22643, + "id": 23045, "properties": { "east": "none", "north": "tall", @@ -164127,7 +167810,7 @@ } }, { - "id": 22644, + "id": 23046, "properties": { "east": "none", "north": "tall", @@ -164138,7 +167821,7 @@ } }, { - "id": 22645, + "id": 23047, "properties": { "east": "none", "north": "tall", @@ -164149,7 +167832,7 @@ } }, { - "id": 22646, + "id": 23048, "properties": { "east": "none", "north": "tall", @@ -164160,7 +167843,7 @@ } }, { - "id": 22647, + "id": 23049, "properties": { "east": "none", "north": "tall", @@ -164171,7 +167854,7 @@ } }, { - "id": 22648, + "id": 23050, "properties": { "east": "none", "north": "tall", @@ -164182,7 +167865,7 @@ } }, { - "id": 22649, + "id": 23051, "properties": { "east": "none", "north": "tall", @@ -164193,7 +167876,7 @@ } }, { - "id": 22650, + "id": 23052, "properties": { "east": "none", "north": "tall", @@ -164204,7 +167887,7 @@ } }, { - "id": 22651, + "id": 23053, "properties": { "east": "none", "north": "tall", @@ -164215,7 +167898,7 @@ } }, { - "id": 22652, + "id": 23054, "properties": { "east": "none", "north": "tall", @@ -164226,7 +167909,7 @@ } }, { - "id": 22653, + "id": 23055, "properties": { "east": "none", "north": "tall", @@ -164237,7 +167920,7 @@ } }, { - "id": 22654, + "id": 23056, "properties": { "east": "none", "north": "tall", @@ -164248,7 +167931,7 @@ } }, { - "id": 22655, + "id": 23057, "properties": { "east": "none", "north": "tall", @@ -164259,7 +167942,7 @@ } }, { - "id": 22656, + "id": 23058, "properties": { "east": "low", "north": "none", @@ -164270,7 +167953,7 @@ } }, { - "id": 22657, + "id": 23059, "properties": { "east": "low", "north": "none", @@ -164281,7 +167964,7 @@ } }, { - "id": 22658, + "id": 23060, "properties": { "east": "low", "north": "none", @@ -164292,7 +167975,7 @@ } }, { - "id": 22659, + "id": 23061, "properties": { "east": "low", "north": "none", @@ -164303,7 +167986,7 @@ } }, { - "id": 22660, + "id": 23062, "properties": { "east": "low", "north": "none", @@ -164314,7 +167997,7 @@ } }, { - "id": 22661, + "id": 23063, "properties": { "east": "low", "north": "none", @@ -164325,7 +168008,7 @@ } }, { - "id": 22662, + "id": 23064, "properties": { "east": "low", "north": "none", @@ -164336,7 +168019,7 @@ } }, { - "id": 22663, + "id": 23065, "properties": { "east": "low", "north": "none", @@ -164347,7 +168030,7 @@ } }, { - "id": 22664, + "id": 23066, "properties": { "east": "low", "north": "none", @@ -164358,7 +168041,7 @@ } }, { - "id": 22665, + "id": 23067, "properties": { "east": "low", "north": "none", @@ -164369,7 +168052,7 @@ } }, { - "id": 22666, + "id": 23068, "properties": { "east": "low", "north": "none", @@ -164380,7 +168063,7 @@ } }, { - "id": 22667, + "id": 23069, "properties": { "east": "low", "north": "none", @@ -164391,7 +168074,7 @@ } }, { - "id": 22668, + "id": 23070, "properties": { "east": "low", "north": "none", @@ -164402,7 +168085,7 @@ } }, { - "id": 22669, + "id": 23071, "properties": { "east": "low", "north": "none", @@ -164413,7 +168096,7 @@ } }, { - "id": 22670, + "id": 23072, "properties": { "east": "low", "north": "none", @@ -164424,7 +168107,7 @@ } }, { - "id": 22671, + "id": 23073, "properties": { "east": "low", "north": "none", @@ -164435,7 +168118,7 @@ } }, { - "id": 22672, + "id": 23074, "properties": { "east": "low", "north": "none", @@ -164446,7 +168129,7 @@ } }, { - "id": 22673, + "id": 23075, "properties": { "east": "low", "north": "none", @@ -164457,7 +168140,7 @@ } }, { - "id": 22674, + "id": 23076, "properties": { "east": "low", "north": "none", @@ -164468,7 +168151,7 @@ } }, { - "id": 22675, + "id": 23077, "properties": { "east": "low", "north": "none", @@ -164479,7 +168162,7 @@ } }, { - "id": 22676, + "id": 23078, "properties": { "east": "low", "north": "none", @@ -164490,7 +168173,7 @@ } }, { - "id": 22677, + "id": 23079, "properties": { "east": "low", "north": "none", @@ -164501,7 +168184,7 @@ } }, { - "id": 22678, + "id": 23080, "properties": { "east": "low", "north": "none", @@ -164512,7 +168195,7 @@ } }, { - "id": 22679, + "id": 23081, "properties": { "east": "low", "north": "none", @@ -164523,7 +168206,7 @@ } }, { - "id": 22680, + "id": 23082, "properties": { "east": "low", "north": "none", @@ -164534,7 +168217,7 @@ } }, { - "id": 22681, + "id": 23083, "properties": { "east": "low", "north": "none", @@ -164545,7 +168228,7 @@ } }, { - "id": 22682, + "id": 23084, "properties": { "east": "low", "north": "none", @@ -164556,7 +168239,7 @@ } }, { - "id": 22683, + "id": 23085, "properties": { "east": "low", "north": "none", @@ -164567,7 +168250,7 @@ } }, { - "id": 22684, + "id": 23086, "properties": { "east": "low", "north": "none", @@ -164578,7 +168261,7 @@ } }, { - "id": 22685, + "id": 23087, "properties": { "east": "low", "north": "none", @@ -164589,7 +168272,7 @@ } }, { - "id": 22686, + "id": 23088, "properties": { "east": "low", "north": "none", @@ -164600,7 +168283,7 @@ } }, { - "id": 22687, + "id": 23089, "properties": { "east": "low", "north": "none", @@ -164611,7 +168294,7 @@ } }, { - "id": 22688, + "id": 23090, "properties": { "east": "low", "north": "none", @@ -164622,7 +168305,7 @@ } }, { - "id": 22689, + "id": 23091, "properties": { "east": "low", "north": "none", @@ -164633,7 +168316,7 @@ } }, { - "id": 22690, + "id": 23092, "properties": { "east": "low", "north": "none", @@ -164644,7 +168327,7 @@ } }, { - "id": 22691, + "id": 23093, "properties": { "east": "low", "north": "none", @@ -164655,7 +168338,7 @@ } }, { - "id": 22692, + "id": 23094, "properties": { "east": "low", "north": "low", @@ -164666,7 +168349,7 @@ } }, { - "id": 22693, + "id": 23095, "properties": { "east": "low", "north": "low", @@ -164677,7 +168360,7 @@ } }, { - "id": 22694, + "id": 23096, "properties": { "east": "low", "north": "low", @@ -164688,7 +168371,7 @@ } }, { - "id": 22695, + "id": 23097, "properties": { "east": "low", "north": "low", @@ -164699,7 +168382,7 @@ } }, { - "id": 22696, + "id": 23098, "properties": { "east": "low", "north": "low", @@ -164710,7 +168393,7 @@ } }, { - "id": 22697, + "id": 23099, "properties": { "east": "low", "north": "low", @@ -164721,7 +168404,7 @@ } }, { - "id": 22698, + "id": 23100, "properties": { "east": "low", "north": "low", @@ -164732,7 +168415,7 @@ } }, { - "id": 22699, + "id": 23101, "properties": { "east": "low", "north": "low", @@ -164743,7 +168426,7 @@ } }, { - "id": 22700, + "id": 23102, "properties": { "east": "low", "north": "low", @@ -164754,7 +168437,7 @@ } }, { - "id": 22701, + "id": 23103, "properties": { "east": "low", "north": "low", @@ -164765,7 +168448,7 @@ } }, { - "id": 22702, + "id": 23104, "properties": { "east": "low", "north": "low", @@ -164776,7 +168459,7 @@ } }, { - "id": 22703, + "id": 23105, "properties": { "east": "low", "north": "low", @@ -164787,7 +168470,7 @@ } }, { - "id": 22704, + "id": 23106, "properties": { "east": "low", "north": "low", @@ -164798,7 +168481,7 @@ } }, { - "id": 22705, + "id": 23107, "properties": { "east": "low", "north": "low", @@ -164809,7 +168492,7 @@ } }, { - "id": 22706, + "id": 23108, "properties": { "east": "low", "north": "low", @@ -164820,7 +168503,7 @@ } }, { - "id": 22707, + "id": 23109, "properties": { "east": "low", "north": "low", @@ -164831,7 +168514,7 @@ } }, { - "id": 22708, + "id": 23110, "properties": { "east": "low", "north": "low", @@ -164842,7 +168525,7 @@ } }, { - "id": 22709, + "id": 23111, "properties": { "east": "low", "north": "low", @@ -164853,7 +168536,7 @@ } }, { - "id": 22710, + "id": 23112, "properties": { "east": "low", "north": "low", @@ -164864,7 +168547,7 @@ } }, { - "id": 22711, + "id": 23113, "properties": { "east": "low", "north": "low", @@ -164875,7 +168558,7 @@ } }, { - "id": 22712, + "id": 23114, "properties": { "east": "low", "north": "low", @@ -164886,7 +168569,7 @@ } }, { - "id": 22713, + "id": 23115, "properties": { "east": "low", "north": "low", @@ -164897,7 +168580,7 @@ } }, { - "id": 22714, + "id": 23116, "properties": { "east": "low", "north": "low", @@ -164908,7 +168591,7 @@ } }, { - "id": 22715, + "id": 23117, "properties": { "east": "low", "north": "low", @@ -164919,7 +168602,7 @@ } }, { - "id": 22716, + "id": 23118, "properties": { "east": "low", "north": "low", @@ -164930,7 +168613,7 @@ } }, { - "id": 22717, + "id": 23119, "properties": { "east": "low", "north": "low", @@ -164941,7 +168624,7 @@ } }, { - "id": 22718, + "id": 23120, "properties": { "east": "low", "north": "low", @@ -164952,7 +168635,7 @@ } }, { - "id": 22719, + "id": 23121, "properties": { "east": "low", "north": "low", @@ -164963,7 +168646,7 @@ } }, { - "id": 22720, + "id": 23122, "properties": { "east": "low", "north": "low", @@ -164974,7 +168657,7 @@ } }, { - "id": 22721, + "id": 23123, "properties": { "east": "low", "north": "low", @@ -164985,7 +168668,7 @@ } }, { - "id": 22722, + "id": 23124, "properties": { "east": "low", "north": "low", @@ -164996,7 +168679,7 @@ } }, { - "id": 22723, + "id": 23125, "properties": { "east": "low", "north": "low", @@ -165007,7 +168690,7 @@ } }, { - "id": 22724, + "id": 23126, "properties": { "east": "low", "north": "low", @@ -165018,7 +168701,7 @@ } }, { - "id": 22725, + "id": 23127, "properties": { "east": "low", "north": "low", @@ -165029,7 +168712,7 @@ } }, { - "id": 22726, + "id": 23128, "properties": { "east": "low", "north": "low", @@ -165040,7 +168723,7 @@ } }, { - "id": 22727, + "id": 23129, "properties": { "east": "low", "north": "low", @@ -165051,7 +168734,7 @@ } }, { - "id": 22728, + "id": 23130, "properties": { "east": "low", "north": "tall", @@ -165062,7 +168745,7 @@ } }, { - "id": 22729, + "id": 23131, "properties": { "east": "low", "north": "tall", @@ -165073,7 +168756,7 @@ } }, { - "id": 22730, + "id": 23132, "properties": { "east": "low", "north": "tall", @@ -165084,7 +168767,7 @@ } }, { - "id": 22731, + "id": 23133, "properties": { "east": "low", "north": "tall", @@ -165095,7 +168778,7 @@ } }, { - "id": 22732, + "id": 23134, "properties": { "east": "low", "north": "tall", @@ -165106,7 +168789,7 @@ } }, { - "id": 22733, + "id": 23135, "properties": { "east": "low", "north": "tall", @@ -165117,7 +168800,7 @@ } }, { - "id": 22734, + "id": 23136, "properties": { "east": "low", "north": "tall", @@ -165128,7 +168811,7 @@ } }, { - "id": 22735, + "id": 23137, "properties": { "east": "low", "north": "tall", @@ -165139,7 +168822,7 @@ } }, { - "id": 22736, + "id": 23138, "properties": { "east": "low", "north": "tall", @@ -165150,7 +168833,7 @@ } }, { - "id": 22737, + "id": 23139, "properties": { "east": "low", "north": "tall", @@ -165161,7 +168844,7 @@ } }, { - "id": 22738, + "id": 23140, "properties": { "east": "low", "north": "tall", @@ -165172,7 +168855,7 @@ } }, { - "id": 22739, + "id": 23141, "properties": { "east": "low", "north": "tall", @@ -165183,7 +168866,7 @@ } }, { - "id": 22740, + "id": 23142, "properties": { "east": "low", "north": "tall", @@ -165194,7 +168877,7 @@ } }, { - "id": 22741, + "id": 23143, "properties": { "east": "low", "north": "tall", @@ -165205,7 +168888,7 @@ } }, { - "id": 22742, + "id": 23144, "properties": { "east": "low", "north": "tall", @@ -165216,7 +168899,7 @@ } }, { - "id": 22743, + "id": 23145, "properties": { "east": "low", "north": "tall", @@ -165227,7 +168910,7 @@ } }, { - "id": 22744, + "id": 23146, "properties": { "east": "low", "north": "tall", @@ -165238,7 +168921,7 @@ } }, { - "id": 22745, + "id": 23147, "properties": { "east": "low", "north": "tall", @@ -165249,7 +168932,7 @@ } }, { - "id": 22746, + "id": 23148, "properties": { "east": "low", "north": "tall", @@ -165260,7 +168943,7 @@ } }, { - "id": 22747, + "id": 23149, "properties": { "east": "low", "north": "tall", @@ -165271,7 +168954,7 @@ } }, { - "id": 22748, + "id": 23150, "properties": { "east": "low", "north": "tall", @@ -165282,7 +168965,7 @@ } }, { - "id": 22749, + "id": 23151, "properties": { "east": "low", "north": "tall", @@ -165293,7 +168976,7 @@ } }, { - "id": 22750, + "id": 23152, "properties": { "east": "low", "north": "tall", @@ -165304,7 +168987,7 @@ } }, { - "id": 22751, + "id": 23153, "properties": { "east": "low", "north": "tall", @@ -165315,7 +168998,7 @@ } }, { - "id": 22752, + "id": 23154, "properties": { "east": "low", "north": "tall", @@ -165326,7 +169009,7 @@ } }, { - "id": 22753, + "id": 23155, "properties": { "east": "low", "north": "tall", @@ -165337,7 +169020,7 @@ } }, { - "id": 22754, + "id": 23156, "properties": { "east": "low", "north": "tall", @@ -165348,7 +169031,7 @@ } }, { - "id": 22755, + "id": 23157, "properties": { "east": "low", "north": "tall", @@ -165359,7 +169042,7 @@ } }, { - "id": 22756, + "id": 23158, "properties": { "east": "low", "north": "tall", @@ -165370,7 +169053,7 @@ } }, { - "id": 22757, + "id": 23159, "properties": { "east": "low", "north": "tall", @@ -165381,7 +169064,7 @@ } }, { - "id": 22758, + "id": 23160, "properties": { "east": "low", "north": "tall", @@ -165392,7 +169075,7 @@ } }, { - "id": 22759, + "id": 23161, "properties": { "east": "low", "north": "tall", @@ -165403,7 +169086,7 @@ } }, { - "id": 22760, + "id": 23162, "properties": { "east": "low", "north": "tall", @@ -165414,7 +169097,7 @@ } }, { - "id": 22761, + "id": 23163, "properties": { "east": "low", "north": "tall", @@ -165425,7 +169108,7 @@ } }, { - "id": 22762, + "id": 23164, "properties": { "east": "low", "north": "tall", @@ -165436,7 +169119,7 @@ } }, { - "id": 22763, + "id": 23165, "properties": { "east": "low", "north": "tall", @@ -165447,7 +169130,7 @@ } }, { - "id": 22764, + "id": 23166, "properties": { "east": "tall", "north": "none", @@ -165458,7 +169141,7 @@ } }, { - "id": 22765, + "id": 23167, "properties": { "east": "tall", "north": "none", @@ -165469,7 +169152,7 @@ } }, { - "id": 22766, + "id": 23168, "properties": { "east": "tall", "north": "none", @@ -165480,7 +169163,7 @@ } }, { - "id": 22767, + "id": 23169, "properties": { "east": "tall", "north": "none", @@ -165491,7 +169174,7 @@ } }, { - "id": 22768, + "id": 23170, "properties": { "east": "tall", "north": "none", @@ -165502,7 +169185,7 @@ } }, { - "id": 22769, + "id": 23171, "properties": { "east": "tall", "north": "none", @@ -165513,7 +169196,7 @@ } }, { - "id": 22770, + "id": 23172, "properties": { "east": "tall", "north": "none", @@ -165524,7 +169207,7 @@ } }, { - "id": 22771, + "id": 23173, "properties": { "east": "tall", "north": "none", @@ -165535,7 +169218,7 @@ } }, { - "id": 22772, + "id": 23174, "properties": { "east": "tall", "north": "none", @@ -165546,7 +169229,7 @@ } }, { - "id": 22773, + "id": 23175, "properties": { "east": "tall", "north": "none", @@ -165557,7 +169240,7 @@ } }, { - "id": 22774, + "id": 23176, "properties": { "east": "tall", "north": "none", @@ -165568,7 +169251,7 @@ } }, { - "id": 22775, + "id": 23177, "properties": { "east": "tall", "north": "none", @@ -165579,7 +169262,7 @@ } }, { - "id": 22776, + "id": 23178, "properties": { "east": "tall", "north": "none", @@ -165590,7 +169273,7 @@ } }, { - "id": 22777, + "id": 23179, "properties": { "east": "tall", "north": "none", @@ -165601,7 +169284,7 @@ } }, { - "id": 22778, + "id": 23180, "properties": { "east": "tall", "north": "none", @@ -165612,7 +169295,7 @@ } }, { - "id": 22779, + "id": 23181, "properties": { "east": "tall", "north": "none", @@ -165623,7 +169306,7 @@ } }, { - "id": 22780, + "id": 23182, "properties": { "east": "tall", "north": "none", @@ -165634,7 +169317,7 @@ } }, { - "id": 22781, + "id": 23183, "properties": { "east": "tall", "north": "none", @@ -165645,7 +169328,7 @@ } }, { - "id": 22782, + "id": 23184, "properties": { "east": "tall", "north": "none", @@ -165656,7 +169339,7 @@ } }, { - "id": 22783, + "id": 23185, "properties": { "east": "tall", "north": "none", @@ -165667,7 +169350,7 @@ } }, { - "id": 22784, + "id": 23186, "properties": { "east": "tall", "north": "none", @@ -165678,7 +169361,7 @@ } }, { - "id": 22785, + "id": 23187, "properties": { "east": "tall", "north": "none", @@ -165689,7 +169372,7 @@ } }, { - "id": 22786, + "id": 23188, "properties": { "east": "tall", "north": "none", @@ -165700,7 +169383,7 @@ } }, { - "id": 22787, + "id": 23189, "properties": { "east": "tall", "north": "none", @@ -165711,7 +169394,7 @@ } }, { - "id": 22788, + "id": 23190, "properties": { "east": "tall", "north": "none", @@ -165722,7 +169405,7 @@ } }, { - "id": 22789, + "id": 23191, "properties": { "east": "tall", "north": "none", @@ -165733,7 +169416,7 @@ } }, { - "id": 22790, + "id": 23192, "properties": { "east": "tall", "north": "none", @@ -165744,7 +169427,7 @@ } }, { - "id": 22791, + "id": 23193, "properties": { "east": "tall", "north": "none", @@ -165755,7 +169438,7 @@ } }, { - "id": 22792, + "id": 23194, "properties": { "east": "tall", "north": "none", @@ -165766,7 +169449,7 @@ } }, { - "id": 22793, + "id": 23195, "properties": { "east": "tall", "north": "none", @@ -165777,7 +169460,7 @@ } }, { - "id": 22794, + "id": 23196, "properties": { "east": "tall", "north": "none", @@ -165788,7 +169471,7 @@ } }, { - "id": 22795, + "id": 23197, "properties": { "east": "tall", "north": "none", @@ -165799,7 +169482,7 @@ } }, { - "id": 22796, + "id": 23198, "properties": { "east": "tall", "north": "none", @@ -165810,7 +169493,7 @@ } }, { - "id": 22797, + "id": 23199, "properties": { "east": "tall", "north": "none", @@ -165821,7 +169504,7 @@ } }, { - "id": 22798, + "id": 23200, "properties": { "east": "tall", "north": "none", @@ -165832,7 +169515,7 @@ } }, { - "id": 22799, + "id": 23201, "properties": { "east": "tall", "north": "none", @@ -165843,7 +169526,7 @@ } }, { - "id": 22800, + "id": 23202, "properties": { "east": "tall", "north": "low", @@ -165854,7 +169537,7 @@ } }, { - "id": 22801, + "id": 23203, "properties": { "east": "tall", "north": "low", @@ -165865,7 +169548,7 @@ } }, { - "id": 22802, + "id": 23204, "properties": { "east": "tall", "north": "low", @@ -165876,7 +169559,7 @@ } }, { - "id": 22803, + "id": 23205, "properties": { "east": "tall", "north": "low", @@ -165887,7 +169570,7 @@ } }, { - "id": 22804, + "id": 23206, "properties": { "east": "tall", "north": "low", @@ -165898,7 +169581,7 @@ } }, { - "id": 22805, + "id": 23207, "properties": { "east": "tall", "north": "low", @@ -165909,7 +169592,7 @@ } }, { - "id": 22806, + "id": 23208, "properties": { "east": "tall", "north": "low", @@ -165920,7 +169603,7 @@ } }, { - "id": 22807, + "id": 23209, "properties": { "east": "tall", "north": "low", @@ -165931,7 +169614,7 @@ } }, { - "id": 22808, + "id": 23210, "properties": { "east": "tall", "north": "low", @@ -165942,7 +169625,7 @@ } }, { - "id": 22809, + "id": 23211, "properties": { "east": "tall", "north": "low", @@ -165953,7 +169636,7 @@ } }, { - "id": 22810, + "id": 23212, "properties": { "east": "tall", "north": "low", @@ -165964,7 +169647,7 @@ } }, { - "id": 22811, + "id": 23213, "properties": { "east": "tall", "north": "low", @@ -165975,7 +169658,7 @@ } }, { - "id": 22812, + "id": 23214, "properties": { "east": "tall", "north": "low", @@ -165986,7 +169669,7 @@ } }, { - "id": 22813, + "id": 23215, "properties": { "east": "tall", "north": "low", @@ -165997,7 +169680,7 @@ } }, { - "id": 22814, + "id": 23216, "properties": { "east": "tall", "north": "low", @@ -166008,7 +169691,7 @@ } }, { - "id": 22815, + "id": 23217, "properties": { "east": "tall", "north": "low", @@ -166019,7 +169702,7 @@ } }, { - "id": 22816, + "id": 23218, "properties": { "east": "tall", "north": "low", @@ -166030,7 +169713,7 @@ } }, { - "id": 22817, + "id": 23219, "properties": { "east": "tall", "north": "low", @@ -166041,7 +169724,7 @@ } }, { - "id": 22818, + "id": 23220, "properties": { "east": "tall", "north": "low", @@ -166052,7 +169735,7 @@ } }, { - "id": 22819, + "id": 23221, "properties": { "east": "tall", "north": "low", @@ -166063,7 +169746,7 @@ } }, { - "id": 22820, + "id": 23222, "properties": { "east": "tall", "north": "low", @@ -166074,7 +169757,7 @@ } }, { - "id": 22821, + "id": 23223, "properties": { "east": "tall", "north": "low", @@ -166085,7 +169768,7 @@ } }, { - "id": 22822, + "id": 23224, "properties": { "east": "tall", "north": "low", @@ -166096,7 +169779,7 @@ } }, { - "id": 22823, + "id": 23225, "properties": { "east": "tall", "north": "low", @@ -166107,7 +169790,7 @@ } }, { - "id": 22824, + "id": 23226, "properties": { "east": "tall", "north": "low", @@ -166118,7 +169801,7 @@ } }, { - "id": 22825, + "id": 23227, "properties": { "east": "tall", "north": "low", @@ -166129,7 +169812,7 @@ } }, { - "id": 22826, + "id": 23228, "properties": { "east": "tall", "north": "low", @@ -166140,7 +169823,7 @@ } }, { - "id": 22827, + "id": 23229, "properties": { "east": "tall", "north": "low", @@ -166151,7 +169834,7 @@ } }, { - "id": 22828, + "id": 23230, "properties": { "east": "tall", "north": "low", @@ -166162,7 +169845,7 @@ } }, { - "id": 22829, + "id": 23231, "properties": { "east": "tall", "north": "low", @@ -166173,7 +169856,7 @@ } }, { - "id": 22830, + "id": 23232, "properties": { "east": "tall", "north": "low", @@ -166184,7 +169867,7 @@ } }, { - "id": 22831, + "id": 23233, "properties": { "east": "tall", "north": "low", @@ -166195,7 +169878,7 @@ } }, { - "id": 22832, + "id": 23234, "properties": { "east": "tall", "north": "low", @@ -166206,7 +169889,7 @@ } }, { - "id": 22833, + "id": 23235, "properties": { "east": "tall", "north": "low", @@ -166217,7 +169900,7 @@ } }, { - "id": 22834, + "id": 23236, "properties": { "east": "tall", "north": "low", @@ -166228,7 +169911,7 @@ } }, { - "id": 22835, + "id": 23237, "properties": { "east": "tall", "north": "low", @@ -166239,7 +169922,7 @@ } }, { - "id": 22836, + "id": 23238, "properties": { "east": "tall", "north": "tall", @@ -166250,7 +169933,7 @@ } }, { - "id": 22837, + "id": 23239, "properties": { "east": "tall", "north": "tall", @@ -166261,7 +169944,7 @@ } }, { - "id": 22838, + "id": 23240, "properties": { "east": "tall", "north": "tall", @@ -166272,7 +169955,7 @@ } }, { - "id": 22839, + "id": 23241, "properties": { "east": "tall", "north": "tall", @@ -166283,7 +169966,7 @@ } }, { - "id": 22840, + "id": 23242, "properties": { "east": "tall", "north": "tall", @@ -166294,7 +169977,7 @@ } }, { - "id": 22841, + "id": 23243, "properties": { "east": "tall", "north": "tall", @@ -166305,7 +169988,7 @@ } }, { - "id": 22842, + "id": 23244, "properties": { "east": "tall", "north": "tall", @@ -166316,7 +169999,7 @@ } }, { - "id": 22843, + "id": 23245, "properties": { "east": "tall", "north": "tall", @@ -166327,7 +170010,7 @@ } }, { - "id": 22844, + "id": 23246, "properties": { "east": "tall", "north": "tall", @@ -166338,7 +170021,7 @@ } }, { - "id": 22845, + "id": 23247, "properties": { "east": "tall", "north": "tall", @@ -166349,7 +170032,7 @@ } }, { - "id": 22846, + "id": 23248, "properties": { "east": "tall", "north": "tall", @@ -166360,7 +170043,7 @@ } }, { - "id": 22847, + "id": 23249, "properties": { "east": "tall", "north": "tall", @@ -166371,7 +170054,7 @@ } }, { - "id": 22848, + "id": 23250, "properties": { "east": "tall", "north": "tall", @@ -166382,7 +170065,7 @@ } }, { - "id": 22849, + "id": 23251, "properties": { "east": "tall", "north": "tall", @@ -166393,7 +170076,7 @@ } }, { - "id": 22850, + "id": 23252, "properties": { "east": "tall", "north": "tall", @@ -166404,7 +170087,7 @@ } }, { - "id": 22851, + "id": 23253, "properties": { "east": "tall", "north": "tall", @@ -166415,7 +170098,7 @@ } }, { - "id": 22852, + "id": 23254, "properties": { "east": "tall", "north": "tall", @@ -166426,7 +170109,7 @@ } }, { - "id": 22853, + "id": 23255, "properties": { "east": "tall", "north": "tall", @@ -166437,7 +170120,7 @@ } }, { - "id": 22854, + "id": 23256, "properties": { "east": "tall", "north": "tall", @@ -166448,7 +170131,7 @@ } }, { - "id": 22855, + "id": 23257, "properties": { "east": "tall", "north": "tall", @@ -166459,7 +170142,7 @@ } }, { - "id": 22856, + "id": 23258, "properties": { "east": "tall", "north": "tall", @@ -166470,7 +170153,7 @@ } }, { - "id": 22857, + "id": 23259, "properties": { "east": "tall", "north": "tall", @@ -166481,7 +170164,7 @@ } }, { - "id": 22858, + "id": 23260, "properties": { "east": "tall", "north": "tall", @@ -166492,7 +170175,7 @@ } }, { - "id": 22859, + "id": 23261, "properties": { "east": "tall", "north": "tall", @@ -166503,7 +170186,7 @@ } }, { - "id": 22860, + "id": 23262, "properties": { "east": "tall", "north": "tall", @@ -166514,7 +170197,7 @@ } }, { - "id": 22861, + "id": 23263, "properties": { "east": "tall", "north": "tall", @@ -166525,7 +170208,7 @@ } }, { - "id": 22862, + "id": 23264, "properties": { "east": "tall", "north": "tall", @@ -166536,7 +170219,7 @@ } }, { - "id": 22863, + "id": 23265, "properties": { "east": "tall", "north": "tall", @@ -166547,7 +170230,7 @@ } }, { - "id": 22864, + "id": 23266, "properties": { "east": "tall", "north": "tall", @@ -166558,7 +170241,7 @@ } }, { - "id": 22865, + "id": 23267, "properties": { "east": "tall", "north": "tall", @@ -166569,7 +170252,7 @@ } }, { - "id": 22866, + "id": 23268, "properties": { "east": "tall", "north": "tall", @@ -166580,7 +170263,7 @@ } }, { - "id": 22867, + "id": 23269, "properties": { "east": "tall", "north": "tall", @@ -166591,7 +170274,7 @@ } }, { - "id": 22868, + "id": 23270, "properties": { "east": "tall", "north": "tall", @@ -166602,7 +170285,7 @@ } }, { - "id": 22869, + "id": 23271, "properties": { "east": "tall", "north": "tall", @@ -166613,7 +170296,7 @@ } }, { - "id": 22870, + "id": 23272, "properties": { "east": "tall", "north": "tall", @@ -166624,7 +170307,7 @@ } }, { - "id": 22871, + "id": 23273, "properties": { "east": "tall", "north": "tall", @@ -166645,44340 +170328,6 @@ ] }, "minecraft:polished_diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13941, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13942, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13943, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13944, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13945, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13946, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13043, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13044, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13045, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13046, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13047, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13048, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13049, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13050, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13051, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13052, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13053, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13054, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13055, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13056, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13057, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13058, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13059, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13060, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13061, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13062, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13063, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13064, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13065, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13066, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13067, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13068, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13069, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13070, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13071, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13072, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13073, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13074, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13075, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13076, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13077, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13078, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13079, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13080, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13081, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13082, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13083, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13084, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13085, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13086, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13087, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13088, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13089, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13090, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13091, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13092, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13093, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13094, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13095, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13096, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13097, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13098, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13099, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13100, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13101, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13102, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13103, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13104, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13105, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13106, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13107, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13108, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13109, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13110, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13111, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13112, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13113, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13114, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13115, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13116, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13117, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13118, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13119, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13120, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13121, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13122, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_granite": { - "states": [ - { - "default": true, - "id": 3 - } - ] - }, - "minecraft:polished_granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13923, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13924, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13925, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13926, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13927, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13928, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12803, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12804, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12805, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12806, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12807, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12808, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12809, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12810, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12811, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12812, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12813, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12814, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12815, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12816, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12817, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12818, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12819, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12820, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12821, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12822, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12823, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12824, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12825, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12826, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12827, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12828, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12829, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12830, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12831, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12832, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12833, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12834, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12835, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12836, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12837, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12838, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12839, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12840, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12841, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12842, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12843, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12844, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12845, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12846, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12847, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12848, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12849, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12850, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12851, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12852, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12853, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12854, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12855, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12856, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12857, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12858, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12859, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12860, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12861, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12862, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12863, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12864, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12865, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12866, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12867, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12868, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12869, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12870, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12871, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12872, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12873, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12874, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12875, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12876, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12877, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12878, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12879, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12880, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12881, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12882, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:poppy": { - "states": [ - { - "default": true, - "id": 2073 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 8599, - "properties": { - "age": "0" - } - }, - { - "id": 8600, - "properties": { - "age": "1" - } - }, - { - "id": 8601, - "properties": { - "age": "2" - } - }, - { - "id": 8602, - "properties": { - "age": "3" - } - }, - { - "id": 8603, - "properties": { - "age": "4" - } - }, - { - "id": 8604, - "properties": { - "age": "5" - } - }, - { - "id": 8605, - "properties": { - "age": "6" - } - }, - { - "id": 8606, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "default": true, - "id": 8569 - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "default": true, - "id": 8577 - } - ] - }, - "minecraft:potted_azalea_bush": { - "states": [ - { - "default": true, - "id": 23704 - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "default": true, - "id": 8578 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "default": true, - "id": 12798 - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "default": true, - "id": 8567 - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "default": true, - "id": 8576 - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "default": true, - "id": 8588 - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "default": true, - "id": 8590 - } - ] - }, - "minecraft:potted_cherry_sapling": { - "states": [ - { - "default": true, - "id": 8570 - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "default": true, - "id": 8584 - } - ] - }, - "minecraft:potted_crimson_fungus": { - "states": [ - { - "default": true, - "id": 19296 - } - ] - }, - "minecraft:potted_crimson_roots": { - "states": [ - { - "default": true, - "id": 19298 - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "default": true, - "id": 8574 - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "default": true, - "id": 8571 - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "default": true, - "id": 8589 - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "default": true, - "id": 8573 - } - ] - }, - "minecraft:potted_flowering_azalea_bush": { - "states": [ - { - "default": true, - "id": 23705 - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "default": true, - "id": 8568 - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "default": true, - "id": 8585 - } - ] - }, - "minecraft:potted_mangrove_propagule": { - "states": [ - { - "default": true, - "id": 8572 - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "default": true, - "id": 8565 - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "default": true, - "id": 8580 - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "default": true, - "id": 8583 - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "default": true, - "id": 8582 - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "default": true, - "id": 8575 - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "default": true, - "id": 8587 - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "default": true, - "id": 8579 - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "default": true, - "id": 8566 - } - ] - }, - "minecraft:potted_torchflower": { - "states": [ - { - "default": true, - "id": 8564 - } - ] - }, - "minecraft:potted_warped_fungus": { - "states": [ - { - "default": true, - "id": 19297 - } - ] - }, - "minecraft:potted_warped_roots": { - "states": [ - { - "default": true, - "id": 19299 - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "default": true, - "id": 8581 - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "default": true, - "id": 8586 - } - ] - }, - "minecraft:powder_snow": { - "states": [ - { - "default": true, - "id": 20925 - } - ] - }, - "minecraft:powder_snow_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 7399, - "properties": { - "level": "1" - } - }, - { - "id": 7400, - "properties": { - "level": "2" - } - }, - { - "id": 7401, - "properties": { - "level": "3" - } - } - ] - }, - "minecraft:powered_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 1940, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 1941, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1942, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1943, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1944, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1945, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1946, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1947, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1948, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1949, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1950, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1951, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 1952, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 1953, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1954, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1955, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1956, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1957, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1958, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1959, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1960, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1961, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1962, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1963, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine": { - "states": [ - { - "default": true, - "id": 10318 - } - ] - }, - "minecraft:prismarine_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10567, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10568, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10569, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10570, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10571, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10572, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10401, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10402, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10403, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10404, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10405, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10406, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10407, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10408, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10409, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10410, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10411, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10412, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10413, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10414, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10415, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10416, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10417, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10418, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10419, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10420, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10421, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10422, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10423, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10424, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10425, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10426, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10427, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10428, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10429, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10430, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10431, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10432, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10433, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10434, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10435, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10436, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10437, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10438, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10439, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10440, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10441, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10442, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10443, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10444, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10445, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10446, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10447, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10448, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10449, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10450, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10451, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10452, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10453, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10454, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10455, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10456, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10457, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10458, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10459, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10460, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10461, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10462, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10463, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10464, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10465, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10466, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10467, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10468, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10469, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10470, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10471, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10472, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10473, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10474, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10475, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10476, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10477, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10478, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10479, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10480, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "default": true, - "id": 10319 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10561, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10562, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10563, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10564, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10565, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10566, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10321, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10322, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10323, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10324, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10325, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10326, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10327, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10328, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10329, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10330, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10331, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10332, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10333, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10334, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10335, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10336, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10337, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10338, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10339, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10340, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10341, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10342, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10343, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10344, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10345, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10346, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10347, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10348, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10349, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10350, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10351, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10352, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10353, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10354, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10355, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10356, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10357, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10358, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10359, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10360, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10361, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10362, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10363, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10364, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10365, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10366, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10367, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10368, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10369, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10370, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10371, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10372, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10373, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10374, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10375, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10376, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10377, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10378, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10379, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10380, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10381, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10382, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10383, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10384, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10385, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10386, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10387, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10388, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10389, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10390, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10391, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10392, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10393, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10394, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10395, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10396, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10397, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10398, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10399, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10400, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14325, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14326, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14327, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14328, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14329, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14330, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14331, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14332, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14333, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14334, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14335, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14336, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14337, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14338, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14339, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14340, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14341, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14342, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14343, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14344, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14345, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14346, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14347, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14348, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14349, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14350, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14351, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14352, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14353, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14354, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14355, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14356, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14357, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14358, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14359, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14360, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14361, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14362, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14363, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14364, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14365, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14366, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14367, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14368, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14369, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14370, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14371, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14372, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14373, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14374, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14375, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14376, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14377, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14378, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14379, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14380, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14381, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14382, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14383, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14384, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14385, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14386, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14387, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14388, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14389, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14390, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14391, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14392, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14393, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14394, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14395, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14396, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14397, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14398, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14399, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14400, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14401, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14402, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14403, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14404, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14405, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14406, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14407, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14408, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14409, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14410, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14411, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14412, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14413, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14414, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14415, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14416, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14417, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14418, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14419, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14420, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14421, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14422, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14423, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14424, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14425, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14426, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14427, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14428, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14429, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14430, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14431, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14432, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14433, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14434, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14435, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14436, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14437, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14438, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14439, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14440, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14441, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14442, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14443, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14444, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14445, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14446, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14447, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14448, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14449, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14450, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14451, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14452, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14453, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14454, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14455, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14456, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14457, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14458, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14459, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14460, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14461, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14462, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14463, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14464, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14465, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14466, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14467, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14468, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14469, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14470, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14471, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14472, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14473, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14474, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14475, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14476, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14477, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14478, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14479, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14480, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14481, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14482, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14483, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14484, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14485, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14486, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14487, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14488, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14489, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14490, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14491, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14492, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14493, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14494, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14495, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14496, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14497, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14498, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14499, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14500, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14501, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14502, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14503, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14504, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14505, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14506, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14507, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14508, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14509, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14510, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14511, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14512, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14513, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14514, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14515, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14516, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14517, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14518, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14519, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14520, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14521, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14522, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14523, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14524, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14525, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14526, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14527, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14528, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14529, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14530, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14531, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14532, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14533, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14534, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14535, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14536, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14537, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14538, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14539, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14540, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14541, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14542, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14543, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14544, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14545, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14546, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14547, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14548, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14549, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14550, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14551, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14552, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14553, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14554, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14555, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14556, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14557, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14558, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14559, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14560, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14561, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14562, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14563, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14564, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14565, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14566, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14567, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14568, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14569, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14570, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14571, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14572, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14573, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14574, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14575, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14576, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14577, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14578, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14579, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14580, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14581, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14582, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14583, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14584, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14585, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14586, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14587, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14588, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14589, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14590, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14591, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14592, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14593, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14594, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14595, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14596, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14597, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14598, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14599, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14600, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14601, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14602, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14603, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14604, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14605, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14606, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14607, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14608, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14609, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14610, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14611, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14612, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14613, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14614, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14615, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14616, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14617, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14618, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14619, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14620, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14621, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14622, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14623, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14624, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14625, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14626, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14627, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14628, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14629, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14630, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14631, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14632, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14633, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14634, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14635, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14636, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14637, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14638, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14639, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14640, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14641, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14642, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14643, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14644, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14645, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14646, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14647, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14648, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:pumpkin": { - "states": [ - { - "default": true, - "id": 5845 - } - ] - }, - "minecraft:pumpkin_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 6817, - "properties": { - "age": "0" - } - }, - { - "id": 6818, - "properties": { - "age": "1" - } - }, - { - "id": 6819, - "properties": { - "age": "2" - } - }, - { - "id": 6820, - "properties": { - "age": "3" - } - }, - { - "id": 6821, - "properties": { - "age": "4" - } - }, - { - "id": 6822, - "properties": { - "age": "5" - } - }, - { - "id": 6823, - "properties": { - "age": "6" - } - }, - { - "id": 6824, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:purple_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10774, - "properties": { - "rotation": "0" - } - }, - { - "id": 10775, - "properties": { - "rotation": "1" - } - }, - { - "id": 10776, - "properties": { - "rotation": "2" - } - }, - { - "id": 10777, - "properties": { - "rotation": "3" - } - }, - { - "id": 10778, - "properties": { - "rotation": "4" - } - }, - { - "id": 10779, - "properties": { - "rotation": "5" - } - }, - { - "id": 10780, - "properties": { - "rotation": "6" - } - }, - { - "id": 10781, - "properties": { - "rotation": "7" - } - }, - { - "id": 10782, - "properties": { - "rotation": "8" - } - }, - { - "id": 10783, - "properties": { - "rotation": "9" - } - }, - { - "id": 10784, - "properties": { - "rotation": "10" - } - }, - { - "id": 10785, - "properties": { - "rotation": "11" - } - }, - { - "id": 10786, - "properties": { - "rotation": "12" - } - }, - { - "id": 10787, - "properties": { - "rotation": "13" - } - }, - { - "id": 10788, - "properties": { - "rotation": "14" - } - }, - { - "id": 10789, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:purple_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1844, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1845, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1846, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1847, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1848, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1849, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1850, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1851, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1852, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1853, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1854, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1855, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1856, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1857, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1858, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1859, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:purple_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20742, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20743, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20744, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20745, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20746, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20747, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20748, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20749, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20750, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20751, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20752, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20753, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20754, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20755, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20756, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20757, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:purple_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20860, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20861, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "default": true, - "id": 10593 - } - ] - }, - "minecraft:purple_concrete": { - "states": [ - { - "default": true, - "id": 12582 - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "default": true, - "id": 12598 - } - ] - }, - "minecraft:purple_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12548, - "properties": { - "facing": "north" - } - }, - { - "id": 12549, - "properties": { - "facing": "south" - } - }, - { - "id": 12550, - "properties": { - "facing": "west" - } - }, - { - "id": 12551, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12472, - "properties": { - "facing": "north" - } - }, - { - "id": 12473, - "properties": { - "facing": "east" - } - }, - { - "id": 12474, - "properties": { - "facing": "south" - } - }, - { - "id": 12475, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12476, - "properties": { - "facing": "up" - } - }, - { - "id": 12477, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "default": true, - "id": 5952 - } - ] - }, - "minecraft:purple_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9548, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9549, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9550, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9551, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9552, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9553, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9554, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9555, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9556, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9557, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9558, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9559, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9560, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9561, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9562, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9563, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9564, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9565, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9566, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9567, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9568, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9569, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9570, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9571, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9572, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9573, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9574, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9575, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9576, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9577, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9578, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9579, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "default": true, - "id": 9222 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10910, - "properties": { - "facing": "north" - } - }, - { - "id": 10911, - "properties": { - "facing": "south" - } - }, - { - "id": 10912, - "properties": { - "facing": "west" - } - }, - { - "id": 10913, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "default": true, - "id": 2053 - } - ] - }, - "minecraft:purpur_block": { - "states": [ - { - "default": true, - "id": 12265 - } - ] - }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 12266, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 12267, - "properties": { - "axis": "y" - } - }, - { - "id": 12268, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:purpur_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11155, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11156, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11157, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11158, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11159, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11160, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:purpur_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12269, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12270, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12271, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12272, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12273, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12274, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12275, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12276, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12277, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12278, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12279, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12280, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12281, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12282, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12283, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12284, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12285, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12286, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12287, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12288, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12289, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12290, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12291, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12292, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12293, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12294, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12295, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12296, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12297, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12298, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12299, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12300, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12301, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12302, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12303, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12304, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12305, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12306, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12307, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12308, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12309, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12310, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12311, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12312, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12313, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12314, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12315, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12316, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12317, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12318, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12319, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12320, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12321, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12322, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12323, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12324, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12325, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12326, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12327, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12328, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12329, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12330, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12331, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12332, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12333, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12334, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12335, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12336, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12337, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12338, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12339, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12340, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12341, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12342, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12343, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12344, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12345, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12346, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12347, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12348, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:quartz_block": { - "states": [ - { - "default": true, - "id": 9091 - } - ] - }, - "minecraft:quartz_bricks": { - "states": [ - { - "default": true, - "id": 20565 - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 9093, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 9094, - "properties": { - "axis": "y" - } - }, - { - "id": 9095, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11137, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11138, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11139, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11140, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11141, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11142, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9096, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9097, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9098, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9099, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9100, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9101, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9102, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9103, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9104, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9105, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9106, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9107, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9108, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9109, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9110, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9111, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9112, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9113, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9114, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9115, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9116, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9117, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9118, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9119, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9120, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9121, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9122, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9123, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9124, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9125, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9126, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9127, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9128, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9129, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9130, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9131, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9132, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9133, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9134, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9135, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9136, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9137, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9138, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9139, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9140, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9141, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9142, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9143, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9144, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9145, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9146, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9147, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9148, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9149, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9150, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9151, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9152, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9153, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9154, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9155, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9156, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9157, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9158, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9159, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9160, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9161, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9162, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9163, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9164, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9165, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9166, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9167, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9168, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9169, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9170, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9171, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9172, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9173, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9174, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9175, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:rail": { - "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4658, - "properties": { - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4659, - "properties": { - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 4660, - "properties": { - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 4661, - "properties": { - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 4662, - "properties": { - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 4663, - "properties": { - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 4664, - "properties": { - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 4665, - "properties": { - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 4666, - "properties": { - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 4667, - "properties": { - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 4668, - "properties": { - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 4669, - "properties": { - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 4670, - "properties": { - "shape": "south_east", - "waterlogged": "true" - } - }, - { - "id": 4671, - "properties": { - "shape": "south_east", - "waterlogged": "false" - } - }, - { - "id": 4672, - "properties": { - "shape": "south_west", - "waterlogged": "true" - } - }, - { - "id": 4673, - "properties": { - "shape": "south_west", - "waterlogged": "false" - } - }, - { - "id": 4674, - "properties": { - "shape": "north_west", - "waterlogged": "true" - } - }, - { - "id": 4675, - "properties": { - "shape": "north_west", - "waterlogged": "false" - } - }, - { - "id": 4676, - "properties": { - "shape": "north_east", - "waterlogged": "true" - } - }, - { - "id": 4677, - "properties": { - "shape": "north_east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:raw_copper_block": { - "states": [ - { - "default": true, - "id": 23702 - } - ] - }, - "minecraft:raw_gold_block": { - "states": [ - { - "default": true, - "id": 23703 - } - ] - }, - "minecraft:raw_iron_block": { - "states": [ - { - "default": true, - "id": 23701 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10838, - "properties": { - "rotation": "0" - } - }, - { - "id": 10839, - "properties": { - "rotation": "1" - } - }, - { - "id": 10840, - "properties": { - "rotation": "2" - } - }, - { - "id": 10841, - "properties": { - "rotation": "3" - } - }, - { - "id": 10842, - "properties": { - "rotation": "4" - } - }, - { - "id": 10843, - "properties": { - "rotation": "5" - } - }, - { - "id": 10844, - "properties": { - "rotation": "6" - } - }, - { - "id": 10845, - "properties": { - "rotation": "7" - } - }, - { - "id": 10846, - "properties": { - "rotation": "8" - } - }, - { - "id": 10847, - "properties": { - "rotation": "9" - } - }, - { - "id": 10848, - "properties": { - "rotation": "10" - } - }, - { - "id": 10849, - "properties": { - "rotation": "11" - } - }, - { - "id": 10850, - "properties": { - "rotation": "12" - } - }, - { - "id": 10851, - "properties": { - "rotation": "13" - } - }, - { - "id": 10852, - "properties": { - "rotation": "14" - } - }, - { - "id": 10853, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1908, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1909, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1910, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1911, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1912, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1913, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1914, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1915, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1916, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1917, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1918, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1919, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1920, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1921, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1922, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1923, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:red_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20806, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20807, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20808, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20809, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20810, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20811, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20812, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20813, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20814, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20815, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20816, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20817, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20818, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20819, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20820, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20821, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20868, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20869, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "default": true, - "id": 10597 - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "default": true, - "id": 12586 - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ - { - "default": true, - "id": 12602 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12564, - "properties": { - "facing": "north" - } - }, - { - "id": 12565, - "properties": { - "facing": "south" - } - }, - { - "id": 12566, - "properties": { - "facing": "west" - } - }, - { - "id": 12567, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:red_mushroom": { - "states": [ - { - "default": true, - "id": 2086 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 6610, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6611, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6612, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6613, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6614, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6615, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6616, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6617, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6618, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6619, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6620, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6621, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6622, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6623, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6624, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6625, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6626, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6627, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6628, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6629, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6630, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6631, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6632, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6633, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6634, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6635, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6636, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6637, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6638, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6639, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6640, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6641, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6642, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6643, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6644, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6645, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6646, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6647, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6648, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6649, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6650, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6651, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6652, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6653, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6654, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6655, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6656, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6657, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6658, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6659, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6660, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6661, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6662, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6663, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6664, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6665, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6666, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6667, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6668, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6669, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6670, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6671, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6672, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6673, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13983, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13984, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13985, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13986, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13987, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13988, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13683, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13684, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13685, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13686, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13687, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13688, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13689, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13690, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13691, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13692, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13693, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13694, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13695, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13696, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13697, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13698, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13699, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13700, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13701, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13702, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13703, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13704, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13705, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13706, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13707, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13708, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13709, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13710, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13711, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13712, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13713, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13714, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13715, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13716, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13717, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13718, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13719, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13720, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13721, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13722, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13723, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13724, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13725, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13726, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13727, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13728, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13729, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13730, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13731, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13732, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13733, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13734, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13735, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13736, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13737, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13738, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13739, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13740, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13741, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13742, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13743, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13744, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13745, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13746, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13747, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13748, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13749, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13750, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13751, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13752, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13753, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13754, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13755, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13756, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13757, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13758, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13759, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13760, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13761, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13762, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 16917, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16918, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16919, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 16920, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16921, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16922, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16923, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16924, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16925, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16926, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16927, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16928, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16929, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16930, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16931, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16932, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16933, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16934, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16935, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16936, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16937, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16938, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16939, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16940, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16941, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16942, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16943, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16944, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16945, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16946, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16947, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16948, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16949, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16950, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16951, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16952, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16953, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16954, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16955, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16956, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16957, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16958, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16959, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16960, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16961, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16962, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16963, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16964, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16965, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16966, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16967, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16968, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16969, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16970, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16971, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16972, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16973, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16974, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16975, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16976, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16977, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16978, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16979, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16980, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16981, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16982, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16983, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16984, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16985, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16986, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16987, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16988, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16989, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16990, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16991, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16992, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16993, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16994, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16995, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16996, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16997, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16998, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16999, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17000, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17001, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17002, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17003, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17004, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17005, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17006, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17007, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17008, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17009, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17010, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17011, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17012, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17013, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17014, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17015, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17016, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17017, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17018, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17019, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17020, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17021, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17022, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17023, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17024, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17025, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17026, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17027, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17028, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17029, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17030, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17031, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17032, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17033, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17034, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17035, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17036, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17037, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17038, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17039, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17040, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17041, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17042, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17043, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17044, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17045, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17046, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17047, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17048, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17049, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17050, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17051, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17052, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17053, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17054, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17055, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17056, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17057, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17058, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17059, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17060, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17061, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17062, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17063, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17064, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17065, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17066, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17067, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17068, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17069, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17070, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17071, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17072, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17073, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17074, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17075, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17076, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17077, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17078, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17079, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17080, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17081, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17082, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17083, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17084, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17085, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17086, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17087, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17088, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17089, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17090, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17091, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17092, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17093, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17094, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17095, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17096, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17097, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17098, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17099, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17100, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17101, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17102, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17103, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17104, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17105, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17106, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17107, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17108, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17109, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17110, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17111, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17112, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17113, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17114, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17115, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17116, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17117, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17118, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17119, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17120, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17121, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17122, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17123, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17124, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17125, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17126, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17127, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17128, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17129, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17130, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17131, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17132, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17133, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17134, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17135, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17136, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17137, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17138, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17139, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17140, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17141, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17142, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17143, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17144, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17145, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17146, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17147, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17148, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17149, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17150, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17151, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17152, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17153, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17154, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17155, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17156, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17157, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17158, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17159, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17160, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17161, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17162, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17163, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17164, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17165, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17166, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17167, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17168, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17169, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17170, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17171, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17172, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17173, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17174, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17175, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17176, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17177, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17178, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17179, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17180, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17181, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17182, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17183, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17184, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17185, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17186, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17187, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17188, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17189, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17190, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17191, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17192, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17193, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17194, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17195, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17196, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17197, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17198, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17199, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17200, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17201, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17202, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17203, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17204, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17205, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17206, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17207, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17208, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17209, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17210, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17211, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17212, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17213, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17214, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17215, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17216, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17217, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17218, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17219, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17220, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17221, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17222, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17223, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17224, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17225, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17226, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17227, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17228, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17229, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17230, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17231, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17232, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17233, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17234, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17235, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17236, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17237, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17238, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17239, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17240, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:red_nether_bricks": { - "states": [ - { - "default": true, - "id": 12389 - } - ] - }, - "minecraft:red_sand": { - "states": [ - { - "default": true, - "id": 117 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "default": true, - "id": 10934 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11143, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11144, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11145, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11146, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11147, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11148, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10937, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10938, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10939, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10940, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10941, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10942, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10943, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10944, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10945, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10946, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10947, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10948, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10949, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10950, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10951, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10952, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10953, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10954, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10955, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10956, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10957, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10958, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10959, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10960, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10961, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10962, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10963, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10964, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10965, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10966, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10967, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10968, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10969, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10970, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10971, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10972, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10973, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10974, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10975, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10976, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10977, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10978, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10979, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10980, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10981, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10982, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10983, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10984, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10985, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10986, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10987, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10988, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10989, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10990, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10991, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10992, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10993, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10994, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10995, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10996, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10997, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10998, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10999, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11000, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11001, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11002, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11003, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11004, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11005, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11006, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11007, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11008, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11009, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11010, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11011, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11012, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11013, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11014, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11015, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11016, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14649, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14650, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14651, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14652, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14653, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14654, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14655, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14656, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14657, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14658, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14659, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14660, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14661, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14662, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14663, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14664, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14665, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14666, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14667, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14668, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14669, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14670, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14671, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14672, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14673, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14674, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14675, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14676, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14677, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14678, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14679, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14680, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14681, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14682, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14683, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14684, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14685, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14686, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14687, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14688, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14689, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14690, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14691, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14692, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14693, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14694, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14695, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14696, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14697, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14698, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14699, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14700, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14701, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14702, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14703, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14704, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14705, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14706, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14707, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14708, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14709, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14710, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14711, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14712, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14713, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14714, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14715, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14716, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14717, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14718, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14719, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14720, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14721, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14722, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14723, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14724, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14725, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14726, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14727, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14728, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14729, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14730, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14731, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14732, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14733, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14734, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14735, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14736, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14737, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14738, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14739, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14740, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14741, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14742, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14743, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14744, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14745, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14746, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14747, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14748, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14749, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14750, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14751, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14752, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14753, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14754, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14755, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14756, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14757, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14758, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14759, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14760, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14761, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14762, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14763, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14764, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14765, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14766, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14767, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14768, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14769, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14770, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14771, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14772, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14773, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14774, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14775, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14776, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14777, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14778, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14779, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14780, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14781, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14782, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14783, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14784, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14785, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14786, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14787, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14788, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14789, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14790, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14791, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14792, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14793, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14794, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14795, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14796, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14797, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14798, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14799, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14800, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14801, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14802, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14803, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14804, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14805, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14806, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14807, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14808, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14809, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14810, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14811, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14812, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14813, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14814, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14815, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14816, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14817, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14818, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14819, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14820, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14821, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14822, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14823, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14824, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14825, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14826, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14827, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14828, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14829, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14830, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14831, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14832, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14833, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14834, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14835, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14836, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14837, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14838, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14839, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14840, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14841, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14842, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14843, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14844, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14845, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14846, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14847, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14848, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14849, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14850, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14851, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14852, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14853, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14854, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14855, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14856, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14857, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14858, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14859, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14860, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14861, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14862, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14863, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14864, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14865, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14866, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14867, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14868, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14869, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14870, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14871, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14872, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14873, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14874, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14875, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14876, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14877, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14878, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14879, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14880, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14881, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14882, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14883, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14884, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14885, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14886, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14887, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14888, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14889, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14890, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14891, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14892, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14893, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14894, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14895, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14896, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14897, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14898, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14899, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14900, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14901, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14902, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14903, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14904, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14905, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14906, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14907, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14908, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14909, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14910, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14911, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14912, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14913, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14914, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14915, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14916, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14917, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14918, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14919, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14920, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14921, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14922, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14923, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14924, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14925, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14926, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14927, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14928, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14929, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14930, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14931, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14932, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14933, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14934, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14935, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14936, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14937, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14938, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14939, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14940, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14941, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14942, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14943, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14944, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14945, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14946, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14947, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14948, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14949, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14950, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14951, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14952, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14953, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14954, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14955, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14956, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14957, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14958, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14959, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14960, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14961, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14962, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14963, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14964, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14965, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14966, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14967, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14968, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14969, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14970, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14971, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14972, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12496, - "properties": { - "facing": "north" - } - }, - { - "id": 12497, - "properties": { - "facing": "east" - } - }, - { - "id": 12498, - "properties": { - "facing": "south" - } - }, - { - "id": 12499, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12500, - "properties": { - "facing": "up" - } - }, - { - "id": 12501, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ - { - "default": true, - "id": 5956 - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9676, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9677, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9678, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9679, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9680, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9681, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9682, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9683, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9684, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9685, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9686, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9687, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9688, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9689, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9690, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9691, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9692, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9693, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9694, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9695, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9696, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9697, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9698, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9699, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9700, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9701, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9702, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9703, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9704, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9705, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9706, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9707, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "default": true, - "id": 9226 - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "default": true, - "id": 2077 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10926, - "properties": { - "facing": "north" - } - }, - { - "id": 10927, - "properties": { - "facing": "south" - } - }, - { - "id": 10928, - "properties": { - "facing": "west" - } - }, - { - "id": 10929, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "default": true, - "id": 2057 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "default": true, - "id": 9079 - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7413, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 7414, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5730, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 5731, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 5734, - "properties": { - "lit": "true" - } - }, - { - "id": 5735, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 5736, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "id": 5737, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 5738, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 5739, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 5740, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 5741, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 5742, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 5743, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:redstone_wire": { - "properties": { - "east": [ - "up", - "side", - "none" - ], - "north": [ - "up", - "side", - "none" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "south": [ - "up", - "side", - "none" - ], - "west": [ - "up", - "side", - "none" - ] - }, - "states": [ - { - "id": 2974, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2975, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2976, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2977, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2978, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2979, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2980, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2981, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2982, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2983, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2984, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2985, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2986, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2987, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2988, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2989, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2990, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2991, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2992, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2993, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2994, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2995, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2996, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2997, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2998, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2999, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3000, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3001, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3002, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3003, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3004, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3005, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3006, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3007, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3008, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3009, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3010, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3011, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3012, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3013, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3014, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3015, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3016, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3017, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3018, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3019, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3020, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3021, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3022, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3023, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3024, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3025, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3026, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3027, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3028, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3029, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3030, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3031, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3032, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3033, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3034, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3035, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3036, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3037, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3038, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3039, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3040, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3041, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3042, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3043, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3044, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3045, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3046, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3047, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3048, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3049, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3050, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3051, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3052, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3053, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3054, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3055, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3056, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3057, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3058, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3059, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3060, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3061, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3062, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3063, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3064, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3065, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3066, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3067, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3068, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3069, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3070, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3071, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3072, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3073, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3074, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3075, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3076, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3077, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3078, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3079, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3080, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3081, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3082, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3083, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3084, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3085, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3086, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3087, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3088, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3089, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3090, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3091, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3092, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3093, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3094, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3095, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3096, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3097, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3098, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3099, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3100, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3101, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3102, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3103, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3104, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3105, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3106, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3107, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3108, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3109, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3110, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3111, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3112, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3113, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3114, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3115, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3116, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3117, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3118, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3119, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3120, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3121, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3122, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3123, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3124, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3125, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3126, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3127, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3128, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3129, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3130, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3131, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3132, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3133, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3134, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3135, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3136, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3137, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3138, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3139, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3140, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3141, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3142, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3143, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3144, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3145, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3146, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3147, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3148, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3149, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3150, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3151, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3152, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3153, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3154, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3155, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3156, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3157, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3158, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3159, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3160, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3161, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3162, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3163, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3164, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3165, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3166, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3167, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3168, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3169, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3170, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3171, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3172, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3173, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3174, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3175, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3176, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3177, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3178, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3179, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3180, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3181, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3182, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3183, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3184, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3185, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3186, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3187, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3188, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3189, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3190, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3191, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3192, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3193, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3194, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3195, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3196, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3197, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3198, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3199, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3200, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3201, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3202, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3203, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3204, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3205, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3206, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3207, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3208, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3209, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3210, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3211, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3212, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3213, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3214, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3215, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3216, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3217, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3218, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3219, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3220, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3221, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3222, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3223, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3224, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3225, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3226, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3227, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3228, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3229, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3230, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3231, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3232, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3233, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3234, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3235, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3236, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3237, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3238, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3239, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3240, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3241, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3242, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3243, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3244, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3245, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3246, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3247, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3248, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3249, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3250, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3251, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3252, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3253, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3254, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3255, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3256, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3257, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3258, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3259, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3260, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3261, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3262, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3263, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3264, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3265, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3266, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3267, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3268, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3269, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3270, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3271, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3272, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3273, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3274, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3275, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3276, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3277, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3278, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3279, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3280, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3281, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3282, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3283, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3284, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3285, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3286, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3287, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3288, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3289, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3290, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3291, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3292, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3293, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3294, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3295, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3296, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3297, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3298, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3299, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3300, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3301, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3302, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3303, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3304, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3305, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3306, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3307, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3308, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3309, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3310, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3311, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3312, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3313, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3314, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3315, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3316, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3317, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3318, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3319, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3320, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3321, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3322, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3323, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3324, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3325, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3326, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3327, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3328, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3329, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3330, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3331, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3332, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3333, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3334, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3335, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3336, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3337, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3338, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3339, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3340, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3341, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3342, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3343, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3344, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3345, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3346, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3347, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3348, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3349, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3350, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3351, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3352, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3353, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3354, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3355, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3356, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3357, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3358, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3359, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3360, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3361, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3362, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3363, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3364, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3365, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3366, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3367, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3368, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3369, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3370, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3371, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3372, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3373, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3374, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3375, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3376, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3377, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3378, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3379, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3380, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3381, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3382, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3383, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3384, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3385, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3386, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3387, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3388, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3389, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3390, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3391, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3392, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3393, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3394, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3395, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3396, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3397, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3398, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3399, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3400, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3401, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3402, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3403, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3404, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3405, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3406, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3407, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3408, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3409, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3410, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3411, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3412, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3413, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3414, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3415, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3416, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3417, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3418, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3419, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3420, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3421, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3422, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3423, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3424, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3425, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3426, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3427, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3428, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3429, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3430, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3431, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3432, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3433, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3434, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3435, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3436, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3437, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3438, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3439, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3440, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3441, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3442, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3443, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3444, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3445, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3446, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3447, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3448, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3449, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3450, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3451, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3452, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3453, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3454, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3455, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3456, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3457, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3458, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3459, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3460, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3461, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3462, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3463, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3464, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3465, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3466, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3467, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3468, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3469, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3470, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3471, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3472, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3473, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3474, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3475, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3476, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3477, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3478, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3479, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3480, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3481, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3482, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3483, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3484, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3485, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3486, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3487, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3488, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3489, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3490, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3491, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3492, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3493, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3494, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3495, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3496, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3497, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3498, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3499, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3500, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3501, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3502, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3503, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3504, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3505, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3506, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3507, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3508, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3509, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3510, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3511, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3512, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3513, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3514, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3515, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3516, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3517, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3518, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3519, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3520, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3521, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3522, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3523, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3524, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3525, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3526, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3527, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3528, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3529, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3530, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3531, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3532, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3533, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3534, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3535, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3536, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3537, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3538, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3539, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3540, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3541, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3542, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3543, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3544, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3545, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3546, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3547, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3548, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3549, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3550, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3551, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3552, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3553, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3554, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3555, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3556, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3557, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3558, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3559, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3560, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3561, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3562, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3563, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3564, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3565, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3566, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3567, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3568, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3569, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3570, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3571, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3572, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3573, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3574, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3575, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3576, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3577, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3578, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3579, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3580, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3581, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3582, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3583, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3584, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3585, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3586, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3587, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3588, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3589, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3590, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3591, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3592, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3593, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3594, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3595, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3596, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3597, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3598, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3599, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3600, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3601, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3602, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3603, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3604, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3605, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3606, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3607, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3608, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3609, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3610, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3611, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3612, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3613, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3614, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3615, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3616, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3617, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3618, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3619, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3620, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3621, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3622, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3623, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3624, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3625, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3626, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3627, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3628, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3629, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3630, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3631, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3632, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3633, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3634, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3635, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3636, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3637, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3638, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3639, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3640, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3641, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3642, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3643, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3644, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3645, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3646, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3647, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3648, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3649, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3650, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3651, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3652, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3653, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3654, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3655, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3656, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3657, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3658, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3659, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3660, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3661, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3662, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3663, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3664, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3665, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3666, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3667, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3668, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3669, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3670, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3671, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3672, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3673, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3674, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3675, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3676, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3677, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3678, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3679, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3680, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3681, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3682, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3683, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3684, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3685, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3686, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3687, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3688, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3689, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3690, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3691, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3692, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3693, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3694, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3695, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3696, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3697, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3698, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3699, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3700, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3701, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3702, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3703, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3704, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3705, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3706, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3707, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3708, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3709, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3710, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3711, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3712, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3713, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3714, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3715, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3716, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3717, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3718, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3719, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3720, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3721, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3722, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3723, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3724, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3725, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3726, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3727, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3728, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3729, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3730, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3731, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3732, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3733, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3734, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3735, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3736, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3737, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3738, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3739, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3740, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3741, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3742, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3743, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3744, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3745, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3746, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3747, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3748, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3749, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3750, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3751, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3752, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3753, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3754, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3755, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3756, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3757, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3758, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3759, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3760, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3761, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3762, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3763, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3764, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3765, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3766, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3767, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3768, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3769, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3770, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3771, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3772, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3773, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3774, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3775, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3776, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3777, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3778, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3779, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3780, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3781, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3782, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3783, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3784, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3785, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3786, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3787, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3788, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3789, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3790, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3791, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3792, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3793, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3794, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3795, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3796, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3797, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3798, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3799, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3800, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3801, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3802, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3803, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3804, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3805, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3806, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3807, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3808, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3809, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3810, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3811, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3812, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3813, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3814, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3815, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3816, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3817, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3818, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3819, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3820, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3821, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3822, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3823, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3824, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3825, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3826, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3827, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3828, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3829, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3830, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3831, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3832, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3833, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3834, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3835, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3836, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3837, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3838, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3839, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3840, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3841, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3842, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3843, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3844, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3845, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3846, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3847, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3848, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3849, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3850, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3851, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3852, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3853, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3854, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3855, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3856, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3857, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3858, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3859, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3860, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3861, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3862, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3863, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3864, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3865, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3866, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3867, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3868, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3869, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3870, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3871, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3872, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3873, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3874, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3875, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3876, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3877, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3878, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3879, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3880, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3881, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3882, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3883, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3884, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3885, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3886, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3887, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3888, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3889, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3890, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3891, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3892, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3893, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3894, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3895, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3896, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3897, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3898, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3899, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3900, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3901, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3902, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3903, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3904, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3905, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3906, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3907, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3908, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3909, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3910, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3911, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3912, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3913, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3914, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3915, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3916, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3917, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3918, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3919, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3920, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3921, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3922, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3923, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3924, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3925, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3926, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3927, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3928, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3929, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3930, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3931, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3932, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3933, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3934, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3935, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3936, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3937, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3938, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3939, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3940, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3941, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3942, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3943, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3944, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3945, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3946, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3947, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3948, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3949, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3950, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3951, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3952, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3953, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3954, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3955, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3956, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3957, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3958, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3959, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3960, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3961, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3962, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3963, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3964, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3965, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3966, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3967, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3968, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3969, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3970, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3971, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3972, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3973, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3974, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3975, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3976, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3977, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3978, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3979, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3980, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3981, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3982, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3983, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3984, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3985, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3986, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3987, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3988, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3989, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3990, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3991, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3992, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3993, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3994, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3995, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3996, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3997, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3998, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3999, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 4000, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 4001, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 4002, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 4003, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 4004, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 4005, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 4006, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 4007, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 4008, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 4009, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 4010, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 4011, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 4012, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 4013, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 4014, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 4015, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 4016, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 4017, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 4018, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 4019, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 4020, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 4021, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 4022, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 4023, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 4024, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 4025, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 4026, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 4027, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 4028, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 4029, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 4030, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 4031, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 4032, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 4033, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 4034, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 4035, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 4036, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 4037, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 4038, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 4039, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 4040, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 4041, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 4042, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 4043, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 4044, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 4045, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 4046, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 4047, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 4048, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 4049, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 4050, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 4051, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 4052, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 4053, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 4054, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 4055, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 4056, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 4057, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 4058, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 4059, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 4060, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 4061, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 4062, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 4063, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 4064, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 4065, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 4066, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 4067, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 4068, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 4069, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 4070, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 4071, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 4072, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 4073, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 4074, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 4075, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 4076, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 4077, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 4078, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 4079, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 4080, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 4081, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 4082, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 4083, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 4084, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 4085, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 4086, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 4087, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 4088, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 4089, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 4090, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 4091, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 4092, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 4093, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 4094, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 4095, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 4096, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 4097, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 4098, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 4099, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 4100, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 4101, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 4102, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 4103, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 4104, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 4105, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 4106, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 4107, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 4108, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 4109, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 4110, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 4111, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 4112, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 4113, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 4114, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 4115, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 4116, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 4117, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 4118, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 4119, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 4120, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 4121, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 4122, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 4123, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 4124, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 4125, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 4126, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 4127, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 4128, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 4129, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 4130, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 4131, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 4132, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 4133, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "default": true, - "id": 4134, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 4135, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 4136, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 4137, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 4138, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 4139, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 4140, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 4141, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 4142, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 4143, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 4144, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 4145, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 4146, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 4147, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 4148, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 4149, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 4150, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 4151, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 4152, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 4153, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 4154, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 4155, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 4156, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 4157, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 4158, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 4159, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 4160, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 4161, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 4162, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 4163, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 4164, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 4165, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 4166, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 4167, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 4168, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 4169, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 4170, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 4171, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 4172, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 4173, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 4174, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 4175, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 4176, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 4177, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 4178, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 4179, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 4180, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 4181, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 4182, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 4183, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 4184, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 4185, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 4186, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 4187, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 4188, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 4189, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 4190, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 4191, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 4192, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 4193, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 4194, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 4195, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 4196, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 4197, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 4198, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 4199, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 4200, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 4201, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 4202, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 4203, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 4204, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 4205, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 4206, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 4207, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 4208, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 4209, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 4210, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 4211, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 4212, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 4213, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 4214, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 4215, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 4216, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 4217, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 4218, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 4219, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 4220, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 4221, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 4222, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 4223, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 4224, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 4225, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 4226, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 4227, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 4228, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 4229, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 4230, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 4231, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 4232, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 4233, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 4234, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 4235, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 4236, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 4237, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 4238, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 4239, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 4240, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 4241, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 4242, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 4243, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 4244, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 4245, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 4246, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 4247, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 4248, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 4249, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 4250, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 4251, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 4252, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 4253, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 4254, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 4255, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 4256, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 4257, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 4258, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 4259, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 4260, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 4261, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 4262, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 4263, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 4264, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 4265, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 4266, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 4267, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 4268, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 4269, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - } - ] - }, - "minecraft:reinforced_deepslate": { - "states": [ - { - "default": true, - "id": 23716 - } - ] - }, - "minecraft:repeater": { - "properties": { - "delay": [ - "1", - "2", - "3", - "4" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "locked": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5878, - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5879, - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5880, - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 5881, - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5882, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5883, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5884, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5885, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5886, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5887, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5888, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5889, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5890, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5891, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5892, - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5893, - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5894, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5895, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5896, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5897, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5898, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5899, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5900, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5901, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5902, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5903, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5904, - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5905, - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5906, - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5907, - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5908, - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5909, - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5910, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5911, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5912, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5913, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5914, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5915, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5916, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5917, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5918, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5919, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5920, - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5921, - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5922, - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5923, - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5924, - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5925, - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5926, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5927, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5928, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5929, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5930, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5931, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5932, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5933, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5934, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5935, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5936, - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5937, - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5938, - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5939, - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5940, - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5941, - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "false" - } - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12359, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 12360, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 12361, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 12362, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 12363, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 12364, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 12365, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 12366, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 12367, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 12368, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 12369, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 12370, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:respawn_anchor": { - "properties": { - "charges": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - "states": [ - { - "default": true, - "id": 19291, - "properties": { - "charges": "0" - } - }, - { - "id": 19292, - "properties": { - "charges": "1" - } - }, - { - "id": 19293, - "properties": { - "charges": "2" - } - }, - { - "id": 19294, - "properties": { - "charges": "3" - } - }, - { - "id": 19295, - "properties": { - "charges": "4" - } - } - ] - }, - "minecraft:rooted_dirt": { - "states": [ - { - "default": true, - "id": 22045 - } - ] - }, - "minecraft:rose_bush": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10606, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10607, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:sand": { - "states": [ - { - "default": true, - "id": 112 - } - ] - }, - "minecraft:sandstone": { - "states": [ - { - "default": true, - "id": 531 - } - ] - }, - "minecraft:sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11089, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11090, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11091, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11092, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11093, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11094, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7427, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7428, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7429, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7430, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7431, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7432, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7433, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7434, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7435, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7436, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7437, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7438, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7439, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7440, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7441, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7442, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7443, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7444, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7445, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7446, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7447, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7448, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7449, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7450, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7451, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7452, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7453, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7454, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7455, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7456, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7457, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7458, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7459, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7460, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7461, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7462, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7463, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7464, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7465, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7466, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7467, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7468, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7469, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7470, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7471, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7472, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7473, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7474, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7475, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7476, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7477, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7478, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7479, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7480, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7481, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7482, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7483, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7484, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7485, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7486, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7487, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7488, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7489, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7490, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7491, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7492, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7493, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7494, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7495, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7496, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7497, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7498, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7499, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7500, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7501, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7502, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7503, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7504, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7505, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7506, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17241, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17242, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17243, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17244, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17245, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17246, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17247, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17248, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17249, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17250, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17251, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17252, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17253, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17254, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17255, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17256, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17257, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17258, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17259, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17260, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17261, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17262, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17263, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17264, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17265, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17266, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17267, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17268, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17269, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17270, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17271, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17272, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17273, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17274, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17275, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17276, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17277, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17278, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17279, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17280, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17281, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17282, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17283, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17284, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17285, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17286, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17287, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17288, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17289, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17290, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17291, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17292, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17293, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17294, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17295, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17296, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17297, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17298, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17299, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17300, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17301, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17302, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17303, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17304, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17305, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17306, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17307, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17308, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17309, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17310, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17311, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17312, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17313, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17314, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17315, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17316, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17317, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17318, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17319, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17320, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17321, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17322, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17323, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17324, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17325, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17326, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17327, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17328, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17329, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17330, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17331, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17332, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17333, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17334, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17335, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17336, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17337, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17338, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17339, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17340, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17341, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17342, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17343, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17344, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17345, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17346, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17347, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17348, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17349, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17350, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17351, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17352, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17353, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17354, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17355, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17356, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17357, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17358, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17359, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17360, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17361, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17362, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17363, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17364, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17365, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17366, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17367, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17368, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17369, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17370, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17371, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17372, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17373, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17374, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17375, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17376, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17377, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17378, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17379, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17380, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17381, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17382, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17383, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17384, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17385, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17386, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17387, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17388, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17389, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17390, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17391, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17392, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17393, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17394, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17395, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17396, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17397, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17398, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17399, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17400, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17401, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17402, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17403, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17404, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17405, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17406, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17407, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17408, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17409, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17410, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17411, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17412, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17413, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17414, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17415, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17416, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17417, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17418, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17419, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17420, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17421, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17422, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17423, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17424, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17425, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17426, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17427, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17428, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17429, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17430, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17431, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17432, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17433, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17434, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17435, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17436, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17437, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17438, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17439, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17440, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17441, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17442, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17443, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17444, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17445, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17446, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17447, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17448, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17449, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17450, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17451, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17452, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17453, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17454, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17455, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17456, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17457, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17458, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17459, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17460, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17461, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17462, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17463, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17464, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17465, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17466, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17467, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17468, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17469, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17470, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17471, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17472, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17473, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17474, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17475, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17476, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17477, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17478, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17479, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17480, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17481, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17482, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17483, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17484, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17485, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17486, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17487, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17488, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17489, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17490, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17491, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17492, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17493, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17494, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17495, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17496, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17497, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17498, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17499, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17500, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17501, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17502, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17503, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17504, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17505, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17506, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17507, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17508, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17509, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17510, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17511, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17512, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17513, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17514, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17515, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17516, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17517, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17518, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17519, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17520, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17521, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17522, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17523, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17524, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17525, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17526, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17527, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17528, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17529, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17530, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17531, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17532, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17533, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17534, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17535, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17536, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17537, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17538, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17539, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17540, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17541, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17542, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17543, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17544, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17545, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17546, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17547, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17548, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17549, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17550, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17551, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17552, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17553, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17554, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17555, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17556, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17557, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17558, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17559, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17560, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17561, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17562, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17563, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17564, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:scaffolding": { - "properties": { - "bottom": [ - "true", - "false" - ], - "distance": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18213, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "true" - } - }, - { - "id": 18214, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "false" - } - }, - { - "id": 18215, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "true" - } - }, - { - "id": 18216, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "false" - } - }, - { - "id": 18217, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "true" - } - }, - { - "id": 18218, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "false" - } - }, - { - "id": 18219, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "true" - } - }, - { - "id": 18220, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "false" - } - }, - { - "id": 18221, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "true" - } - }, - { - "id": 18222, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "false" - } - }, - { - "id": 18223, - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "true" - } - }, - { - "id": 18224, - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "false" - } - }, - { - "id": 18225, - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "true" - } - }, - { - "id": 18226, - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "false" - } - }, - { - "id": 18227, - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "true" - } - }, - { - "id": 18228, - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "false" - } - }, - { - "id": 18229, - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "true" - } - }, - { - "id": 18230, - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "false" - } - }, - { - "id": 18231, - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "true" - } - }, - { - "id": 18232, - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "false" - } - }, - { - "id": 18233, - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "true" - } - }, - { - "id": 18234, - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "false" - } - }, - { - "id": 18235, - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "true" - } - }, - { - "id": 18236, - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "false" - } - }, - { - "id": 18237, - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "true" - } - }, - { - "id": 18238, - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "false" - } - }, - { - "id": 18239, - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "true" - } - }, - { - "id": 18240, - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "false" - } - }, - { - "id": 18241, - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "true" - } - }, - { - "id": 18242, - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "false" - } - }, - { - "id": 18243, - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18244, - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk": { - "states": [ - { - "default": true, - "id": 21022 - } - ] - }, - "minecraft:sculk_catalyst": { - "properties": { - "bloom": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21151, - "properties": { - "bloom": "true" - } - }, - { - "default": true, - "id": 21152, - "properties": { - "bloom": "false" - } - } - ] - }, - "minecraft:sculk_sensor": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20926, - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20927, - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20928, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20929, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20930, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20931, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20932, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20933, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20934, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20935, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20936, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20937, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20938, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20939, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20940, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20941, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20942, - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20943, - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20944, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20945, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20946, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20947, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20948, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20949, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20950, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20951, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20952, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20953, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20954, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20955, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20956, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20957, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20958, - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20959, - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20960, - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20961, - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20962, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20963, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20964, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20965, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20966, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20967, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20968, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20969, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20970, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20971, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20972, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20973, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20974, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20975, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20976, - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20977, - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20978, - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20979, - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20980, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20981, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20982, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20983, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20984, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20985, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20986, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20987, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20988, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20989, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20990, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20991, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20992, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20993, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20994, - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20995, - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20996, - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20997, - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20998, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20999, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21000, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21001, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21002, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21003, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21004, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21005, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21006, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21007, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21008, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21009, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21010, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21011, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21012, - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21013, - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21014, - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21015, - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21016, - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21017, - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21018, - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21019, - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21020, - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21021, - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk_shrieker": { - "properties": { - "can_summon": [ - "true", - "false" - ], - "shrieking": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21153, - "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "true" - } - }, - { - "id": 21154, - "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "false" - } - }, - { - "id": 21155, - "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "true" - } - }, - { - "id": 21156, - "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "false" - } - }, - { - "id": 21157, - "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "true" - } - }, - { - "id": 21158, - "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "false" - } - }, - { - "id": 21159, - "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21160, - "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk_vein": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21023, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21024, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21025, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21026, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21027, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21028, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21029, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21030, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21031, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21032, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21033, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21034, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21035, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21036, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21037, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21038, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21039, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21040, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21041, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21042, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21043, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21044, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21045, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21046, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21047, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21048, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21049, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21050, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21051, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21052, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21053, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21054, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21055, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21056, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21057, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21058, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21059, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21060, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21061, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21062, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21063, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21064, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21065, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21066, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21067, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21068, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21069, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21070, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21071, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21072, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21073, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21074, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21075, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21076, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21077, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21078, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21079, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21080, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21081, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21082, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21083, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21084, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21085, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21086, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21087, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21088, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21089, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21090, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21091, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21092, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21093, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21094, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21095, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21096, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21097, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21098, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21099, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21100, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21101, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21102, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21103, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21104, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21105, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21106, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21107, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21108, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21109, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21110, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21111, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21112, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21113, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21114, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21115, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21116, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21117, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21118, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21119, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21120, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21121, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21122, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21123, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21124, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21125, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21126, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21127, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21128, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21129, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21130, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21131, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21132, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21133, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21134, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21135, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21136, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21137, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21138, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21139, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21140, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21141, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21142, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21143, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21144, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21145, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21146, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21147, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21148, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21149, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 21150, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:sea_lantern": { - "states": [ - { - "default": true, - "id": 10579 - } - ] - }, - "minecraft:sea_pickle": { - "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12774, - "properties": { - "pickles": "1", - "waterlogged": "true" - } - }, - { - "id": 12775, - "properties": { - "pickles": "1", - "waterlogged": "false" - } - }, - { - "id": 12776, - "properties": { - "pickles": "2", - "waterlogged": "true" - } - }, - { - "id": 12777, - "properties": { - "pickles": "2", - "waterlogged": "false" - } - }, - { - "id": 12778, - "properties": { - "pickles": "3", - "waterlogged": "true" - } - }, - { - "id": 12779, - "properties": { - "pickles": "3", - "waterlogged": "false" - } - }, - { - "id": 12780, - "properties": { - "pickles": "4", - "waterlogged": "true" - } - }, - { - "id": 12781, - "properties": { - "pickles": "4", - "waterlogged": "false" - } - } - ] - }, - "minecraft:seagrass": { - "states": [ - { - "default": true, - "id": 2004 - } - ] - }, - "minecraft:shroomlight": { - "states": [ - { - "default": true, - "id": 18451 - } - ] - }, - "minecraft:shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12406, - "properties": { - "facing": "north" - } - }, - { - "id": 12407, - "properties": { - "facing": "east" - } - }, - { - "id": 12408, - "properties": { - "facing": "south" - } - }, - { - "id": 12409, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12410, - "properties": { - "facing": "up" - } - }, - { - "id": 12411, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8823, - "properties": { - "rotation": "0" - } - }, - { - "id": 8824, - "properties": { - "rotation": "1" - } - }, - { - "id": 8825, - "properties": { - "rotation": "2" - } - }, - { - "id": 8826, - "properties": { - "rotation": "3" - } - }, - { - "id": 8827, - "properties": { - "rotation": "4" - } - }, - { - "id": 8828, - "properties": { - "rotation": "5" - } - }, - { - "id": 8829, - "properties": { - "rotation": "6" - } - }, - { - "id": 8830, - "properties": { - "rotation": "7" - } - }, - { - "id": 8831, - "properties": { - "rotation": "8" - } - }, - { - "id": 8832, - "properties": { - "rotation": "9" - } - }, - { - "id": 8833, - "properties": { - "rotation": "10" - } - }, - { - "id": 8834, - "properties": { - "rotation": "11" - } - }, - { - "id": 8835, - "properties": { - "rotation": "12" - } - }, - { - "id": 8836, - "properties": { - "rotation": "13" - } - }, - { - "id": 8837, - "properties": { - "rotation": "14" - } - }, - { - "id": 8838, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8839, - "properties": { - "facing": "north" - } - }, - { - "id": 8840, - "properties": { - "facing": "south" - } - }, - { - "id": 8841, - "properties": { - "facing": "west" - } - }, - { - "id": 8842, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "default": true, - "id": 10220 - } - ] - }, - "minecraft:small_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20910, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 20911, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 20912, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 20913, - "properties": { - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 20914, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 20915, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 20916, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 20917, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 20918, - "properties": { - "facing": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20919, - "properties": { - "facing": "up", - "waterlogged": "false" - } - }, - { - "id": 20920, - "properties": { - "facing": "down", - "waterlogged": "true" - } - }, - { - "id": 20921, - "properties": { - "facing": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:small_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22027, - "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22028, - "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22029, - "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22030, - "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22031, - "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22032, - "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22033, - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22034, - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22035, - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22036, - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22037, - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22038, - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22039, - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22040, - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22041, - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22042, - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "default": true, - "id": 18307 - } - ] - }, - "minecraft:smoker": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18261, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 18262, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 18263, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 18264, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 18265, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 18266, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 18267, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 18268, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:smooth_basalt": { - "states": [ - { - "default": true, - "id": 23700 - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "default": true, - "id": 11163 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13965, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13966, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13967, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13968, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13969, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13970, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13443, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13444, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13445, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13446, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13447, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13448, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13449, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13450, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13451, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13452, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13453, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13454, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13455, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13456, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13457, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13458, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13459, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13460, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13461, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13462, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13463, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13464, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13465, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13466, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13467, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13468, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13469, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13470, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13471, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13472, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13473, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13474, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13475, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13476, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13477, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13478, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13479, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13480, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13481, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13482, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13483, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13484, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13485, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13486, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13487, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13488, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13489, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13490, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13491, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13492, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13493, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13494, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13495, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13496, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13497, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13498, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13499, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13500, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13501, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13502, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13503, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13504, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13505, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13506, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13507, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13508, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13509, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13510, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13511, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13512, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13513, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13514, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13515, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13516, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13517, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13518, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13519, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13520, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13521, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13522, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ - { - "default": true, - "id": 11164 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13929, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13930, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13931, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13932, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13933, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13934, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12883, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12884, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12885, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12886, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12887, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12888, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12889, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12890, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12891, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12892, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12893, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12894, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12895, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12896, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12897, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12898, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12899, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12900, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12901, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12902, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12903, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12904, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12905, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12906, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12907, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12908, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12909, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12910, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12911, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12912, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12913, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12914, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12915, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12916, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12917, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12918, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12919, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12920, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12921, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12922, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12923, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12924, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12925, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12926, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12927, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12928, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12929, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12930, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12931, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12932, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12933, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12934, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12935, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12936, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12937, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12938, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12939, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12940, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12941, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12942, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12943, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12944, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12945, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12946, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12947, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12948, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12949, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12950, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12951, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12952, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12953, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12954, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12955, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12956, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12957, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12958, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12959, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12960, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12961, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12962, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_sandstone": { - "states": [ - { - "default": true, - "id": 11162 - } - ] - }, - "minecraft:smooth_sandstone_slab": { "properties": { "type": [ "top", @@ -211036,6 +170385,44340 @@ } ] }, + "minecraft:polished_diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13061, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13062, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13063, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13064, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13065, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13066, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13067, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13068, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13069, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13070, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13071, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13072, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13073, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13074, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13075, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13076, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13077, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13078, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13079, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13080, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13081, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13082, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13083, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13084, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13085, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13086, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13087, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13088, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13089, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13090, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13091, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13092, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13093, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13094, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13095, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13096, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13097, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13098, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13099, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13100, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13101, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13102, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13103, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13104, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13105, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13106, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13107, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13108, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13109, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13110, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13111, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13112, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13113, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13114, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13115, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13116, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13117, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13118, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13119, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13120, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13121, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13122, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13123, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13124, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13125, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13126, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13127, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13128, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13129, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13130, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13131, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13132, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13133, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13134, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13135, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13136, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13137, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13138, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13139, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13140, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13941, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13942, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13943, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13944, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13945, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13946, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12821, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12822, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12823, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12824, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12825, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12826, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12827, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12828, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12829, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12830, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12831, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12832, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12833, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12834, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12835, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12836, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12837, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12838, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12839, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12840, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12841, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12842, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12843, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12844, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12845, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12846, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12847, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12848, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12849, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12850, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12851, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12852, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12853, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12854, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12855, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12856, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12857, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12858, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12859, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12860, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12861, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12862, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12863, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12864, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12865, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12866, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12867, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12868, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12869, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12870, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12871, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12872, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12873, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12874, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12875, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12876, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12877, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12878, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12879, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12880, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12881, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12882, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12883, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12884, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12885, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12886, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12887, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12888, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12889, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12890, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12891, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12892, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12893, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12894, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12895, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12896, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12897, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12898, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12899, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12900, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:poppy": { + "states": [ + { + "default": true, + "id": 2077 + } + ] + }, + "minecraft:potatoes": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8603, + "properties": { + "age": "0" + } + }, + { + "id": 8604, + "properties": { + "age": "1" + } + }, + { + "id": 8605, + "properties": { + "age": "2" + } + }, + { + "id": 8606, + "properties": { + "age": "3" + } + }, + { + "id": 8607, + "properties": { + "age": "4" + } + }, + { + "id": 8608, + "properties": { + "age": "5" + } + }, + { + "id": 8609, + "properties": { + "age": "6" + } + }, + { + "id": 8610, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "states": [ + { + "default": true, + "id": 8573 + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "default": true, + "id": 8581 + } + ] + }, + "minecraft:potted_azalea_bush": { + "states": [ + { + "default": true, + "id": 24106 + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "default": true, + "id": 8582 + } + ] + }, + "minecraft:potted_bamboo": { + "states": [ + { + "default": true, + "id": 12816 + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "default": true, + "id": 8571 + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "default": true, + "id": 8580 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "default": true, + "id": 8592 + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "default": true, + "id": 8594 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "states": [ + { + "default": true, + "id": 8574 + } + ] + }, + "minecraft:potted_cornflower": { + "states": [ + { + "default": true, + "id": 8588 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "states": [ + { + "default": true, + "id": 19314 + } + ] + }, + "minecraft:potted_crimson_roots": { + "states": [ + { + "default": true, + "id": 19316 + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "default": true, + "id": 8578 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "default": true, + "id": 8575 + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "default": true, + "id": 8593 + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "default": true, + "id": 8577 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "states": [ + { + "default": true, + "id": 24107 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "default": true, + "id": 8572 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 8589 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "states": [ + { + "default": true, + "id": 8576 + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "default": true, + "id": 8569 + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "default": true, + "id": 8584 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "default": true, + "id": 8587 + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "default": true, + "id": 8586 + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "default": true, + "id": 8579 + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "default": true, + "id": 8591 + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "default": true, + "id": 8583 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "default": true, + "id": 8570 + } + ] + }, + "minecraft:potted_torchflower": { + "states": [ + { + "default": true, + "id": 8568 + } + ] + }, + "minecraft:potted_warped_fungus": { + "states": [ + { + "default": true, + "id": 19315 + } + ] + }, + "minecraft:potted_warped_roots": { + "states": [ + { + "default": true, + "id": 19317 + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "default": true, + "id": 8585 + } + ] + }, + "minecraft:potted_wither_rose": { + "states": [ + { + "default": true, + "id": 8590 + } + ] + }, + "minecraft:powder_snow": { + "states": [ + { + "default": true, + "id": 20943 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7403, + "properties": { + "level": "1" + } + }, + { + "id": 7404, + "properties": { + "level": "2" + } + }, + { + "id": 7405, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1944, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1945, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1946, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1947, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1948, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1949, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1950, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1951, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1952, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1953, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1954, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1955, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1956, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1957, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1958, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1959, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1960, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1961, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1962, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1963, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1964, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1965, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1966, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1967, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "states": [ + { + "default": true, + "id": 10322 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10571, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10572, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10573, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10574, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10575, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10576, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10405, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10406, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10407, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10408, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10409, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10410, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10411, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10412, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10413, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10414, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10415, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10416, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10417, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10418, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10419, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10420, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10421, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10422, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10423, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10424, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10425, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10426, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10427, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10428, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10429, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10430, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10431, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10432, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10433, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10434, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10435, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10436, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10437, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10438, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10439, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10440, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10441, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10442, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10443, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10444, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10445, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10446, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10447, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10448, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10449, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10450, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10451, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10452, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10453, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10454, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10455, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10456, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10457, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10458, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10459, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10460, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10461, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10462, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10463, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10464, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10465, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10466, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10467, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10468, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10469, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10470, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10471, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10472, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10473, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10474, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10475, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10476, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10477, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10478, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10479, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10480, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10481, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10482, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10483, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10484, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "states": [ + { + "default": true, + "id": 10323 + } + ] + }, + "minecraft:prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10565, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10566, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10567, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10568, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10569, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10570, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10325, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10326, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10327, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10328, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10329, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10330, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10331, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10332, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10333, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10334, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10335, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10336, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10337, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10339, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10340, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10341, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10342, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10343, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10344, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10345, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10346, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10347, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10348, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10349, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10350, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10351, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10352, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10353, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10354, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10355, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10356, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10357, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10359, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10360, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10361, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10362, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10363, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10364, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10365, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10366, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10367, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10368, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10369, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10370, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10371, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10372, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10373, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10374, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10375, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10376, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10377, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10379, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10380, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10381, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10382, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10383, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10384, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10385, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10386, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10387, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10388, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10389, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10390, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10391, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10392, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10393, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10394, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10395, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10396, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10397, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10399, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10400, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10401, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10402, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10403, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10404, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14343, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14344, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14345, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14346, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14347, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14348, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14349, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14350, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14351, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14352, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14353, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14354, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14355, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14356, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14357, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14358, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14359, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14360, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14361, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14362, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14363, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14364, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14365, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14366, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14367, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14368, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14369, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14370, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14371, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14372, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14373, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14374, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14375, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14376, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14377, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14378, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14379, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14380, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14381, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14382, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14383, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14384, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14385, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14386, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14387, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14388, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14389, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14390, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14391, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14392, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14393, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14394, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14395, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14396, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14397, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14398, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14399, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14400, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14401, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14402, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14403, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14404, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14405, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14406, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14407, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14408, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14409, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14410, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14411, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14412, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14413, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14414, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14415, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14416, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14417, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14418, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14419, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14420, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14421, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14422, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14423, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14424, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14425, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14426, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14427, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14428, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14429, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14430, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14431, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14432, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14433, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14434, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14435, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14436, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14437, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14438, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14439, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14440, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14441, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14442, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14443, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14444, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14445, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14446, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14447, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14448, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14449, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14450, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14451, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14452, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14453, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14454, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14455, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14456, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14457, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14458, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14459, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14460, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14461, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14462, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14463, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14464, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14465, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14466, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14467, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14468, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14469, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14470, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14471, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14472, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14473, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14474, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14475, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14476, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14477, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14478, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14479, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14480, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14481, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14482, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14483, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14484, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14485, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14486, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14487, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14488, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14489, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14490, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14491, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14492, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14493, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14494, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14495, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14496, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14497, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14498, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14499, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14500, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14501, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14502, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14503, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14504, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14505, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14506, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14507, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14508, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14509, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14510, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14511, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14512, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14513, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14514, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14515, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14516, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14517, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14518, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14519, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14520, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14521, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14522, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14523, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14524, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14525, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14526, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14527, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14528, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14529, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14530, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14531, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14532, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14533, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14534, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14535, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14536, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14537, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14538, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14539, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14540, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14541, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14542, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14543, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14544, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14545, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14546, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14547, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14548, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14549, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14550, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14551, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14552, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14553, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14554, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14555, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14556, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14557, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14558, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14559, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14560, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14561, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14562, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14563, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14564, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14565, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14566, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14567, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14568, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14569, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14570, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14571, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14572, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14573, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14574, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14575, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14576, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14577, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14578, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14579, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14580, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14581, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14582, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14583, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14584, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14585, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14586, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14587, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14588, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14589, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14590, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14591, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14592, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14593, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14594, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14595, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14596, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14597, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14598, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14599, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14600, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14601, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14602, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14603, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14604, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14605, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14606, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14607, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14608, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14609, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14610, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14611, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14612, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14613, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14614, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14615, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14616, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14617, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14618, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14619, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14620, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14621, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14622, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14623, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14624, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14625, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14626, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14627, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14628, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14629, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14630, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14631, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14632, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14633, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14634, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14635, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14636, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14637, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14638, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14639, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14640, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14641, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14642, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14643, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14644, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14645, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14646, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14647, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14648, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14649, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14650, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14651, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14652, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14653, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14654, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14655, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14656, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14657, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14658, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14659, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14660, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14661, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14662, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14663, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14664, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14665, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14666, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "states": [ + { + "default": true, + "id": 5849 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6821, + "properties": { + "age": "0" + } + }, + { + "id": 6822, + "properties": { + "age": "1" + } + }, + { + "id": 6823, + "properties": { + "age": "2" + } + }, + { + "id": 6824, + "properties": { + "age": "3" + } + }, + { + "id": 6825, + "properties": { + "age": "4" + } + }, + { + "id": 6826, + "properties": { + "age": "5" + } + }, + { + "id": 6827, + "properties": { + "age": "6" + } + }, + { + "id": 6828, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10778, + "properties": { + "rotation": "0" + } + }, + { + "id": 10779, + "properties": { + "rotation": "1" + } + }, + { + "id": 10780, + "properties": { + "rotation": "2" + } + }, + { + "id": 10781, + "properties": { + "rotation": "3" + } + }, + { + "id": 10782, + "properties": { + "rotation": "4" + } + }, + { + "id": 10783, + "properties": { + "rotation": "5" + } + }, + { + "id": 10784, + "properties": { + "rotation": "6" + } + }, + { + "id": 10785, + "properties": { + "rotation": "7" + } + }, + { + "id": 10786, + "properties": { + "rotation": "8" + } + }, + { + "id": 10787, + "properties": { + "rotation": "9" + } + }, + { + "id": 10788, + "properties": { + "rotation": "10" + } + }, + { + "id": 10789, + "properties": { + "rotation": "11" + } + }, + { + "id": 10790, + "properties": { + "rotation": "12" + } + }, + { + "id": 10791, + "properties": { + "rotation": "13" + } + }, + { + "id": 10792, + "properties": { + "rotation": "14" + } + }, + { + "id": 10793, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1848, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1849, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1850, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1851, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1852, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1853, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1854, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1855, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1856, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1857, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1858, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1859, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1860, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1861, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1862, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1863, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20760, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20761, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20762, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20763, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20764, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20765, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20766, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20767, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20768, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20769, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20770, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20771, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20772, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20773, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20774, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20775, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20878, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20879, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "states": [ + { + "default": true, + "id": 10597 + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "default": true, + "id": 12597 + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "default": true, + "id": 12613 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12563, + "properties": { + "facing": "north" + } + }, + { + "id": 12564, + "properties": { + "facing": "south" + } + }, + { + "id": 12565, + "properties": { + "facing": "west" + } + }, + { + "id": 12566, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12487, + "properties": { + "facing": "north" + } + }, + { + "id": 12488, + "properties": { + "facing": "east" + } + }, + { + "id": 12489, + "properties": { + "facing": "south" + } + }, + { + "id": 12490, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12491, + "properties": { + "facing": "up" + } + }, + { + "id": 12492, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ + { + "default": true, + "id": 5956 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9552, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9553, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9554, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9555, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9556, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9557, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9558, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9559, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9560, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9561, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9562, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9563, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9564, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9565, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9566, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9567, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9568, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9569, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9570, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9571, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9572, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9573, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9574, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9575, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9576, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9577, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9578, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9579, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9580, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9581, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9582, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9583, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ + { + "default": true, + "id": 9226 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10914, + "properties": { + "facing": "north" + } + }, + { + "id": 10915, + "properties": { + "facing": "south" + } + }, + { + "id": 10916, + "properties": { + "facing": "west" + } + }, + { + "id": 10917, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "states": [ + { + "default": true, + "id": 2057 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "default": true, + "id": 12269 + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12270, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12271, + "properties": { + "axis": "y" + } + }, + { + "id": 12272, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11159, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11160, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11161, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11162, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11163, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11164, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12273, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12274, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12275, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12276, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12277, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12278, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12279, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12280, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12281, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12282, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12283, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12284, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12285, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12286, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12287, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12288, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12289, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12290, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12291, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12293, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12294, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12295, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12296, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12297, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12298, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12299, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12300, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12301, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12302, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12303, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12304, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12305, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12306, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12307, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12308, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12309, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12310, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12311, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12313, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12314, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12315, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12316, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12317, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12318, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12319, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12320, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12321, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12322, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12323, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12324, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12325, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12326, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12327, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12328, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12329, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12330, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12331, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12333, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12334, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12335, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12336, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12337, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12338, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12339, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12340, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12341, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12342, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12343, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12344, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12345, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12346, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12347, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12348, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12349, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12350, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12351, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "states": [ + { + "default": true, + "id": 9095 + } + ] + }, + "minecraft:quartz_bricks": { + "states": [ + { + "default": true, + "id": 20583 + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 9097, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 9098, + "properties": { + "axis": "y" + } + }, + { + "id": 9099, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11141, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11142, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11143, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11144, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11145, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11146, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9100, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9101, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9102, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9103, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9104, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9105, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9106, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9107, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9108, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9109, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9110, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9111, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9112, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9113, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9114, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9115, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9116, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9117, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9118, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9119, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9120, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9121, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9122, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9123, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9124, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9125, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9126, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9127, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9128, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9129, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9130, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9131, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9132, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9133, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9134, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9135, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9136, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9137, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9138, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9139, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9140, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9141, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9142, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9143, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9144, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9145, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9146, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9147, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9148, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9149, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9150, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9151, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9152, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9153, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9154, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9155, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9156, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9157, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9158, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9159, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9160, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9161, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9162, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9163, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9164, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9165, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9166, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9167, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9168, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9169, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9170, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9171, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9172, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9173, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9174, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9175, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9176, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9177, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9178, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9179, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4662, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4663, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 4664, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 4665, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 4666, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 4667, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 4668, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 4669, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 4670, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 4671, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 4672, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 4673, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 4674, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 4675, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 4676, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 4677, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 4678, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 4679, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 4680, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 4681, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "states": [ + { + "default": true, + "id": 24104 + } + ] + }, + "minecraft:raw_gold_block": { + "states": [ + { + "default": true, + "id": 24105 + } + ] + }, + "minecraft:raw_iron_block": { + "states": [ + { + "default": true, + "id": 24103 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10842, + "properties": { + "rotation": "0" + } + }, + { + "id": 10843, + "properties": { + "rotation": "1" + } + }, + { + "id": 10844, + "properties": { + "rotation": "2" + } + }, + { + "id": 10845, + "properties": { + "rotation": "3" + } + }, + { + "id": 10846, + "properties": { + "rotation": "4" + } + }, + { + "id": 10847, + "properties": { + "rotation": "5" + } + }, + { + "id": 10848, + "properties": { + "rotation": "6" + } + }, + { + "id": 10849, + "properties": { + "rotation": "7" + } + }, + { + "id": 10850, + "properties": { + "rotation": "8" + } + }, + { + "id": 10851, + "properties": { + "rotation": "9" + } + }, + { + "id": 10852, + "properties": { + "rotation": "10" + } + }, + { + "id": 10853, + "properties": { + "rotation": "11" + } + }, + { + "id": 10854, + "properties": { + "rotation": "12" + } + }, + { + "id": 10855, + "properties": { + "rotation": "13" + } + }, + { + "id": 10856, + "properties": { + "rotation": "14" + } + }, + { + "id": 10857, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1912, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1913, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1914, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1915, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1916, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1917, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1918, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1919, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1920, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1921, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1922, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1923, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1924, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1925, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1926, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1927, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20824, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20825, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20826, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20827, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20828, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20829, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20830, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20831, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20832, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20833, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20834, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20835, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20836, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20837, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20838, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20839, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20886, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20887, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "default": true, + "id": 10601 + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "default": true, + "id": 12601 + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "default": true, + "id": 12617 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12579, + "properties": { + "facing": "north" + } + }, + { + "id": 12580, + "properties": { + "facing": "south" + } + }, + { + "id": 12581, + "properties": { + "facing": "west" + } + }, + { + "id": 12582, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "default": true, + "id": 2090 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6614, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6615, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6616, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6617, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6618, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6619, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6620, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6621, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6622, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6623, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6624, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6625, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6626, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6627, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6628, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6629, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6630, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6631, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6632, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6633, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6634, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6635, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6636, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6637, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6638, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6639, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6640, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6641, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6642, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6643, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6644, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6645, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6646, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6647, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6648, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6649, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6650, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6651, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6652, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6653, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6654, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6655, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6656, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6657, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6658, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6659, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6660, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6661, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6662, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6663, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6664, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6665, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6666, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6667, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6668, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6669, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6670, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6671, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6672, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6673, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6674, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6675, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6676, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6677, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14001, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14002, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14003, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14004, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14005, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14006, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13701, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13702, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13703, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13704, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13705, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13706, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13707, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13708, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13709, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13710, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13711, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13712, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13713, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13714, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13715, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13716, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13717, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13718, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13719, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13720, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13722, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13723, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13724, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13725, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13726, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13727, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13728, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13729, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13730, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13731, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13732, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13733, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13734, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13735, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13736, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13737, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13738, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13739, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13740, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13741, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13742, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13743, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13744, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13745, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13746, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13747, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13748, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13749, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13750, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13751, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13752, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13753, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13754, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13755, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13756, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13757, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13758, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13759, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13760, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13761, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13762, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13763, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13764, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13765, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13766, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13767, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13768, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13769, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13770, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13772, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13773, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13774, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13776, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13777, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13778, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13779, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13780, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16935, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16936, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16937, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16938, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16939, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16940, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16941, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16942, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16943, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16944, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16945, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16946, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16947, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16948, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16949, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16950, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16951, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16952, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16953, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16954, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16955, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16956, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16957, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16958, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16959, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16960, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16961, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16962, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16963, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16964, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16965, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16966, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16967, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16968, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16969, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16970, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16971, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16972, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16973, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16974, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16975, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16976, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16977, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16978, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16979, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16980, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16981, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16983, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16984, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16985, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16986, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16987, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16988, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16989, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16990, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16991, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16992, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16993, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16994, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16995, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16996, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16997, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16998, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16999, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17000, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17001, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17002, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17003, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17004, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17005, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17006, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17007, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17017, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17018, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17019, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17020, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17021, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17022, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17023, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17024, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17025, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17026, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17027, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17028, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17029, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17030, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17031, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17032, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17033, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17034, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17035, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17036, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17037, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17038, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17039, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17040, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17041, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17042, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17043, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17053, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17054, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17055, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17056, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17057, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17058, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17059, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17060, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17061, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17062, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17063, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17064, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17065, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17066, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17067, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17068, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17069, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17070, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17071, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17072, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17073, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17074, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17075, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17076, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17077, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17078, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17079, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17089, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17090, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17091, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17092, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17093, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17094, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17095, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17096, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17097, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17098, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17099, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17100, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17101, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17102, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17103, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17113, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17114, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17115, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17125, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17126, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17127, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17128, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17129, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17130, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17131, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17132, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17133, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17134, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17135, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17136, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17137, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17138, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17139, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17140, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17141, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17142, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17143, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17144, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17145, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17146, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17147, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17148, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17149, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17150, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17151, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17152, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17153, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17154, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17155, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17156, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17157, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17158, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17159, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17160, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17161, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17162, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17163, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17164, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17165, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17166, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17167, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17168, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17169, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17170, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17171, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17172, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17173, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17174, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17175, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17176, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17177, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17178, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17179, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17180, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17181, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17182, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17183, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17184, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17185, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17186, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17187, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17188, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17189, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17190, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17191, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17192, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17193, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17194, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17195, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17196, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17197, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17198, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17199, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17200, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17201, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17202, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17203, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17204, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17205, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17206, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17207, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17208, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17209, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17210, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17211, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17212, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17213, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17214, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17215, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17216, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17217, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17218, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17219, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17220, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17221, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17222, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17223, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17224, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17225, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17226, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17227, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17228, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17229, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17230, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17231, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17232, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17233, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17234, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17235, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17236, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17237, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17238, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17239, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17240, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17241, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17242, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17243, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17244, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17245, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17246, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17247, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17248, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17249, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17250, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17251, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17252, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17253, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17254, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17255, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17256, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17257, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17258, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "states": [ + { + "default": true, + "id": 12404 + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "default": true, + "id": 117 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "default": true, + "id": 10938 + } + ] + }, + "minecraft:red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11147, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11148, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11149, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11150, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11151, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11152, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10941, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10942, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10943, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10944, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10945, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10946, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10947, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10948, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10949, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10950, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10953, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10954, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10955, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10956, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10957, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10958, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10959, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10960, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10961, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10962, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10963, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10964, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10965, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10966, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10967, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10968, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10969, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10970, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10976, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10977, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10978, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10979, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10980, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10981, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10982, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10983, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10984, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10985, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10986, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10987, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10988, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10989, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10990, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10996, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10997, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10998, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10999, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11000, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11001, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11002, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11003, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11004, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11005, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11006, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11007, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11008, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11009, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11010, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11016, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11017, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11018, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11019, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11020, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14667, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14668, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14669, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14670, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14671, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14672, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14673, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14674, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14675, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14676, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14677, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14678, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14679, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14680, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14681, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14682, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14683, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14684, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14685, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14686, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14687, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14688, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14689, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14690, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14691, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14692, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14693, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14694, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14695, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14696, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14697, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14698, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14699, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14700, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14701, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14702, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14703, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14704, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14705, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14706, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14707, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14708, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14709, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14710, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14711, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14712, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14713, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14714, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14715, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14716, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14717, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14718, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14719, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14720, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14721, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14722, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14723, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14724, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14725, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14726, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14727, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14728, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14729, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14730, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14731, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14732, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14733, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14734, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14735, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14736, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14737, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14738, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14739, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14740, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14741, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14742, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14743, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14744, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14745, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14746, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14747, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14748, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14749, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14750, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14751, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14752, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14753, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14754, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14755, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14756, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14757, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14758, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14759, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14760, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14761, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14762, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14763, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14764, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14765, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14766, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14767, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14768, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14769, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14770, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14771, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14772, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14773, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14774, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14775, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14776, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14777, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14778, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14779, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14780, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14781, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14782, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14783, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14784, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14785, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14786, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14787, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14788, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14789, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14790, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14791, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14792, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14793, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14794, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14795, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14796, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14797, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14798, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14799, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14800, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14801, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14802, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14803, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14804, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14805, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14806, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14807, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14808, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14809, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14810, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14811, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14812, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14813, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14814, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14815, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14816, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14817, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14818, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14819, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14820, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14821, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14822, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14823, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14824, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14825, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14826, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14827, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14828, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14829, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14830, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14831, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14832, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14833, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14834, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14835, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14836, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14837, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14838, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14839, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14840, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14841, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14842, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14843, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14844, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14845, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14846, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14847, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14848, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14849, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14850, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14851, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14852, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14853, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14854, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14855, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14856, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14857, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14858, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14859, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14860, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14861, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14862, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14863, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14864, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14865, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14866, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14867, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14868, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14869, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14870, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14871, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14872, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14873, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14874, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14875, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14876, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14877, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14878, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14879, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14880, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14881, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14882, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14883, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14884, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14885, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14886, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14887, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14888, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14889, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14890, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14891, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14892, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14893, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14894, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14895, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14896, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14897, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14898, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14899, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14900, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14901, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14902, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14903, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14904, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14905, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14906, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14907, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14908, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14909, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14910, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14911, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14912, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14913, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14914, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14915, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14916, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14917, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14918, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14919, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14920, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14921, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14922, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14923, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14924, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14925, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14926, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14927, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14928, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14929, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14930, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14931, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14932, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14933, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14934, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14935, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14936, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14937, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14938, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14939, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14940, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14941, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14942, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14943, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14944, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14945, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14946, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14947, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14948, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14949, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14950, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14951, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14952, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14953, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14954, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14955, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14956, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14957, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14958, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14959, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14960, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14961, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14962, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14963, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14964, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14965, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14966, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14967, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14968, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14969, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14970, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14971, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14972, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14973, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14974, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14975, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14976, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14977, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14978, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14979, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14980, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14981, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14982, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14983, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14984, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14985, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14986, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14987, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14988, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14989, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14990, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12511, + "properties": { + "facing": "north" + } + }, + { + "id": 12512, + "properties": { + "facing": "east" + } + }, + { + "id": 12513, + "properties": { + "facing": "south" + } + }, + { + "id": 12514, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12515, + "properties": { + "facing": "up" + } + }, + { + "id": 12516, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ + { + "default": true, + "id": 5960 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9680, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9681, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9682, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9683, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9684, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9685, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9686, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9687, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9688, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9689, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9690, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9691, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9692, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9693, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9694, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9695, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9696, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9697, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9698, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9699, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9700, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9701, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9702, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9703, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9704, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9705, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9706, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9707, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9708, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9709, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9710, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9711, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "default": true, + "id": 9230 + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "default": true, + "id": 2081 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10930, + "properties": { + "facing": "north" + } + }, + { + "id": 10931, + "properties": { + "facing": "south" + } + }, + { + "id": 10932, + "properties": { + "facing": "west" + } + }, + { + "id": 10933, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "states": [ + { + "default": true, + "id": 2061 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "default": true, + "id": 9083 + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7417, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 7418, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5734, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5735, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5738, + "properties": { + "lit": "true" + } + }, + { + "id": 5739, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5740, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 5741, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 5742, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 5743, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 5744, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 5745, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 5746, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 5747, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 2978, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 2979, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 2980, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 2981, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 2982, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 2983, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 2984, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 2985, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 2986, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 2987, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 2988, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 2989, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 2990, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 2991, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 2992, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 2993, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 2994, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 2995, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 2996, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 2997, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 2998, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 2999, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3000, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3001, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3002, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3003, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3004, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3005, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3006, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3007, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3008, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3009, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3010, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3011, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3012, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3013, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3014, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3015, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3016, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3017, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3018, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3019, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3020, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3021, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3022, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3023, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3024, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3025, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3026, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3027, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3028, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3029, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3030, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3031, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3032, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3033, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3034, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3035, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3036, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3037, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3038, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3039, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3040, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3041, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3042, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3043, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3044, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3045, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3046, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3047, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3048, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3049, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3050, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3051, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3052, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3053, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3054, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3055, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3056, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3057, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3058, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3059, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3060, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3061, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3062, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3063, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3064, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3065, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3066, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3067, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3068, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3069, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3070, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3071, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3072, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3073, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3074, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3075, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3076, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3077, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3078, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3079, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3080, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3081, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3082, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3083, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3084, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3085, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3086, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3087, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3088, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3089, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3090, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3091, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3092, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3093, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3094, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3095, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3096, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3097, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3098, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3099, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3100, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3101, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3102, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3103, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3104, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3105, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3106, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3107, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3108, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3109, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3110, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3111, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3112, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3113, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3114, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3115, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3116, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3117, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3118, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3119, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3120, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3121, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3122, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3123, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3124, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3125, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3126, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3127, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3128, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3129, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3130, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3131, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3132, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3133, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3134, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3135, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3136, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3137, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3138, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3139, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3140, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3141, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3142, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3143, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3144, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3145, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3146, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3147, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3148, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3149, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3150, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3151, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3152, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3153, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3154, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3155, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3156, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3157, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3158, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3159, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3160, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3161, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3162, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3163, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3164, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3165, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3166, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3167, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3168, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3169, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3170, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3171, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3172, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3173, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3174, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3175, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3176, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3177, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3178, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3179, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3180, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3181, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3182, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3183, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3184, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3185, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3186, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3187, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3188, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3189, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3190, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3191, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3192, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3193, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3194, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3195, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3196, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3197, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3198, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3199, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3200, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3201, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3202, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3203, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3204, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3205, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3206, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3207, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3208, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3209, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3210, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3211, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3212, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3213, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3214, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3215, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3216, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3217, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3218, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3219, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3220, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3221, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3222, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3223, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3224, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3225, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3226, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3227, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3228, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3229, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3230, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3231, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3232, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3233, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3234, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3235, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3236, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3237, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3238, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3239, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3240, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3241, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3242, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3243, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3244, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3245, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3246, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3247, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3248, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3249, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3250, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3251, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3252, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3253, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3254, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3255, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3256, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3257, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3258, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3259, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3260, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3261, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3262, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3263, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3264, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3265, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3266, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3267, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3268, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3269, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3270, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3271, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3272, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3273, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3274, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3275, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3276, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3277, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3278, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3279, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3280, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3281, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3282, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3283, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3284, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3285, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3286, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3287, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3288, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3289, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3290, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3291, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3292, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3293, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3294, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3295, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3296, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3297, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3298, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3299, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3300, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3301, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3302, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3303, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3304, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3305, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3306, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3307, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3308, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3309, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3310, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3311, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3312, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3313, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3314, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3315, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3316, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3317, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3318, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3319, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3320, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3321, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3322, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3323, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3324, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3325, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3326, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3327, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3328, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3329, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3330, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3331, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3332, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3333, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3334, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3335, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3336, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3337, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3338, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3339, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3340, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3341, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3342, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3343, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3344, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3345, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3346, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3347, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3348, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3349, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3350, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3351, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3352, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3353, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3354, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3355, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3356, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3357, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3358, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3359, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3360, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3361, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3362, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3363, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3364, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3365, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3366, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3367, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3368, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3369, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3370, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3371, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3372, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3373, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3374, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3375, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3376, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3377, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3378, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3379, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3380, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3381, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3382, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3383, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3384, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3385, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3386, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3387, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3388, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3389, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3390, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3391, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3392, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3393, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3394, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3395, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3396, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3397, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3398, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3399, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3400, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3401, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3402, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3403, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3404, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3405, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3406, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3407, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3408, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3409, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3410, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3411, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3412, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3413, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3414, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3415, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3416, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3417, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3418, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3419, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3420, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3421, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3422, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3423, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3424, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3425, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3426, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3427, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3428, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3429, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3430, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3431, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3432, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3433, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3434, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3435, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3436, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3437, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3438, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3439, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3440, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3441, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3442, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3443, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3444, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3445, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3446, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3447, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3448, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3449, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3450, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3451, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3452, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3453, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3454, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3455, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3456, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3457, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3458, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3459, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3460, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3461, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3462, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3463, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3464, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3465, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3466, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3467, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3468, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3469, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3470, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3471, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3472, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3473, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3474, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3475, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3476, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3477, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3478, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3479, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3480, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3481, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3482, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3483, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3484, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3485, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3486, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3487, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3488, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3489, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3490, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3491, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3492, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3493, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3494, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3495, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3496, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3497, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3498, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3499, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3500, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3501, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3502, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3503, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3504, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3505, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3506, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3507, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3508, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3509, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3510, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3511, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3512, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3513, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3514, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3515, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3516, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3517, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3518, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3519, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3520, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3521, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3522, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3523, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3524, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3525, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3526, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3527, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3528, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3529, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3530, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3531, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3532, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3533, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3534, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3535, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3536, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3537, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3538, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3539, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3540, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3541, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3542, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3543, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3544, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3545, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3546, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3547, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3548, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3549, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3550, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3551, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3552, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3553, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3554, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3555, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3556, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3557, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3558, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3559, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3560, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3561, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3562, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3563, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3564, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3565, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3566, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3567, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3568, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3569, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3570, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3571, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3572, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3573, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3574, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3575, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3576, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3577, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3578, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3579, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3580, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3581, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3582, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3583, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3584, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3585, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3586, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3587, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3588, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3589, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3590, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3591, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3592, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3593, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3594, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3595, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3596, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3597, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3598, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3599, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3600, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3601, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3602, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3603, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3604, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3605, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3606, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3607, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3608, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3609, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3610, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3611, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3612, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3613, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3614, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3615, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3616, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3617, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3618, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3619, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3620, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3621, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3622, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3623, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3624, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3625, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3626, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3627, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3628, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3629, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3630, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3631, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3632, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3633, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3634, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3635, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3636, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3637, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3638, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3639, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3640, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3641, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3642, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3643, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3644, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3645, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3646, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3647, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3648, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3649, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3650, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3651, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3652, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3653, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3654, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3655, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3656, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3657, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3658, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3659, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3660, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3661, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3662, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3663, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3664, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3665, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3666, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3667, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3668, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3669, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3670, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3671, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3672, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3673, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3674, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3675, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3676, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3677, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3678, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3679, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3680, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3681, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3682, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3683, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3684, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3685, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3686, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3687, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3688, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3689, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3690, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3691, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3692, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3693, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3694, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3695, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3696, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3697, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3698, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3699, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3700, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3701, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3702, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3703, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3704, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3705, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3706, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3707, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3708, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3709, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3710, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3711, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3712, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3713, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3714, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3715, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3716, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3717, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3718, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3719, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3720, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3721, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3722, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3723, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3724, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3725, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3726, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3727, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3728, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3729, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3730, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3731, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3732, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3733, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3734, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3735, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3736, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3737, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3738, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3739, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3740, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3741, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3742, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3743, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3744, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3745, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3746, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3747, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3748, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3749, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3750, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3751, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3752, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3753, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3754, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3755, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3756, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3757, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3758, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3759, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3760, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3761, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3762, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3763, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3764, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3765, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3766, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3767, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3768, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3769, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3770, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3771, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3772, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3773, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3774, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3775, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3776, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3777, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3778, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3779, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3780, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3781, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3782, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3783, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3784, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3785, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3786, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3787, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3788, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3789, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3790, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3791, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3792, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3793, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3794, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3795, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3796, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3797, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3798, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3799, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3800, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3801, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3802, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3803, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3804, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3805, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3806, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3807, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3808, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3809, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3810, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3811, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3812, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3813, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3814, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3815, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3816, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3817, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3818, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3819, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3820, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3821, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3822, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3823, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3824, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3825, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3826, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3827, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3828, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3829, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3830, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3831, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3832, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3833, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3834, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3835, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3836, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3837, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3838, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3839, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3840, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3841, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3842, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3843, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3844, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3845, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3846, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3847, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3848, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3849, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3850, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3851, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3852, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3853, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3854, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3855, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3856, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3857, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3858, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3859, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3860, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3861, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3862, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3863, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3864, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3865, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3866, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3867, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3868, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3869, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3870, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3871, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3872, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3873, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3874, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3875, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3876, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3877, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3878, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3879, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3880, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3881, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3882, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3883, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3884, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3885, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3886, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3887, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3888, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3889, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3890, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3891, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3892, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3893, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3894, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3895, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3896, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3897, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3898, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3899, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3900, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3901, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3902, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3903, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3904, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3905, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3906, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3907, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3908, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3909, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3910, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3911, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3912, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3913, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3914, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3915, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3916, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3917, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3918, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3919, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3920, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3921, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3922, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3923, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3924, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3925, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3926, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3927, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3928, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3929, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3930, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3931, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3932, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3933, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3934, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3935, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3936, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3937, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3938, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3939, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3940, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3941, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3942, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3943, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3944, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3945, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3946, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3947, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3948, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3949, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3950, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3951, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3952, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3953, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3954, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3955, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3956, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3957, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3958, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3959, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3960, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3961, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3962, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3963, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3964, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3965, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3966, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3967, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3968, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3969, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3970, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3971, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3972, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3973, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3974, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3975, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3976, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3977, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3978, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3979, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3980, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3981, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3982, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3983, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3984, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3985, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3986, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3987, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3988, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3989, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3990, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3991, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3992, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3993, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3994, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3995, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3996, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3997, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3998, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3999, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4000, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4001, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4002, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4003, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4004, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4005, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4006, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4007, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4008, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4009, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4010, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4011, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4012, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4013, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4014, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4015, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4016, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4017, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4018, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4019, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4020, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4021, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4022, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4023, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4024, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4025, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4026, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4027, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4028, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4029, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4030, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4031, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4032, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4033, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4034, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4035, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4036, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4037, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4038, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4039, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4040, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4041, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4042, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4043, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4044, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4045, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4046, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4047, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4048, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4049, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4050, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4051, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4052, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4053, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4054, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4055, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4056, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4057, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4058, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4059, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4060, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4061, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4062, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4063, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4064, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4065, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4066, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4067, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4068, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4069, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4070, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4071, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4072, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4073, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4074, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4075, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4076, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4077, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4078, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4079, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4080, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4081, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4082, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4083, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4084, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4085, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4086, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4087, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4088, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4089, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4090, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4091, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4092, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4093, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4094, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4095, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4096, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4097, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4098, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4099, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4100, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4101, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4102, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4103, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4104, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4105, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4106, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4107, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4108, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4109, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4110, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4111, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4112, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4113, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4114, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4115, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4116, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4117, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4118, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4119, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4120, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4121, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4122, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4123, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4124, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4125, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4126, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4127, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4128, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4129, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4130, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4131, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4132, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4133, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4134, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4135, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4136, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4137, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "default": true, + "id": 4138, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4139, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4140, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4141, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4142, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4143, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4144, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4145, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4146, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4147, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4148, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4149, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4150, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4151, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4152, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4153, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4154, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4155, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4156, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4157, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4158, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4159, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4160, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4161, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4162, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4163, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4164, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4165, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4166, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4167, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4168, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4169, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4170, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4171, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4172, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4173, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4174, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4175, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4176, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4177, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4178, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4179, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4180, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4181, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4182, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4183, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4184, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4185, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4186, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4187, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4188, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4189, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4190, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4191, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4192, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4193, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4194, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4195, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4196, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4197, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4198, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4199, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4200, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4201, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4202, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4203, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4204, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4205, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4206, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4207, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4208, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4209, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4210, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4211, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4212, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4213, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4214, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4215, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4216, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4217, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4218, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4219, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4220, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4221, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4222, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4223, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4224, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4225, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4226, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4227, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4228, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4229, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4230, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4231, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4232, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4233, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4234, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4235, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4236, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4237, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4238, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4239, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4240, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4241, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4242, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4243, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4244, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4245, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4246, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4247, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4248, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4249, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4250, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4251, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4252, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4253, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4254, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4255, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4256, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4257, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4258, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4259, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4260, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4261, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4262, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4263, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4264, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4265, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4266, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4267, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4268, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4269, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4270, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4271, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4272, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4273, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "states": [ + { + "default": true, + "id": 24118 + } + ] + }, + "minecraft:repeater": { + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5882, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5883, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5884, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5885, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5886, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5887, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5888, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5889, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5890, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5891, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5892, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5893, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5894, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5895, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5896, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5897, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5898, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5899, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5900, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5901, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5902, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5903, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5904, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5905, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5906, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5907, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5908, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5909, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5910, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5911, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5912, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5913, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5914, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5915, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5916, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5917, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5918, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5919, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5920, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5921, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5922, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5923, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5924, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5925, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5926, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5927, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5928, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5929, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5930, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5931, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5932, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5933, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5934, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5935, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5936, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5937, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5938, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5939, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5940, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5941, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5942, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5943, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5944, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5945, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12374, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12375, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12376, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12377, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12378, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12379, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12380, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12381, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12382, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12383, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12384, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12385, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:respawn_anchor": { + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 19309, + "properties": { + "charges": "0" + } + }, + { + "id": 19310, + "properties": { + "charges": "1" + } + }, + { + "id": 19311, + "properties": { + "charges": "2" + } + }, + { + "id": 19312, + "properties": { + "charges": "3" + } + }, + { + "id": 19313, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "states": [ + { + "default": true, + "id": 22447 + } + ] + }, + "minecraft:rose_bush": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10610, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10611, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "states": [ + { + "default": true, + "id": 112 + } + ] + }, + "minecraft:sandstone": { + "states": [ + { + "default": true, + "id": 535 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11093, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11094, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11095, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11096, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11097, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11098, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7432, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7450, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7470, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7490, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7500, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17259, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17260, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17261, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17262, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17263, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17264, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17265, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17266, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17267, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17268, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17269, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17270, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17271, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17272, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17273, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17274, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17275, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17276, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17277, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17278, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17279, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17280, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17281, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17282, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17283, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17284, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17285, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17286, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17287, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17288, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17289, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17290, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17291, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17292, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17293, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17294, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17295, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17296, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17297, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17298, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17299, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17300, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17301, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17302, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17303, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17304, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17305, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17307, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17308, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17309, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17310, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17311, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17312, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17313, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17314, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17315, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17316, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17317, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17318, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17319, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17320, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17321, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17322, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17323, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17324, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17325, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17326, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17327, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17328, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17329, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17330, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17331, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17341, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17342, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17343, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17344, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17345, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17346, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17347, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17348, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17349, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17350, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17351, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17352, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17353, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17354, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17355, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17356, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17357, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17358, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17359, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17360, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17361, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17362, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17363, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17364, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17365, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17366, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17367, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17377, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17378, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17379, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17380, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17381, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17382, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17383, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17384, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17385, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17386, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17387, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17388, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17389, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17390, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17391, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17392, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17393, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17394, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17395, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17396, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17397, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17398, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17399, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17400, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17403, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17466, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17469, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17474, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17475, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17476, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17477, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17478, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17479, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17480, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17481, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17482, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17483, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17484, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17485, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17487, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17488, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17489, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17490, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17491, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17492, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17493, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17494, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17495, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17496, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17497, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17498, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17499, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17500, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17501, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17502, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17503, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17504, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17505, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17506, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17507, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17508, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17509, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17510, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17511, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17512, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17513, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17514, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17515, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17516, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17517, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17518, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17519, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17520, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17521, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17523, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17524, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17525, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17526, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17527, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17528, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17529, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17530, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17531, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17532, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17533, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17534, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17535, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17536, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17537, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17538, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17539, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17540, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17541, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17542, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17543, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17544, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17545, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17546, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17547, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17557, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17558, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17559, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17560, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17561, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17562, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17563, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17564, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17565, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17566, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17567, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17568, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17569, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17570, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17571, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17572, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17573, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17574, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17575, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17576, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17577, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17578, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17579, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17580, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17581, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17582, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18231, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18232, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18233, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18234, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18235, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18236, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18237, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18238, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18239, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18240, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18241, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18242, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18243, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18244, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18245, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 18246, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 18247, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18248, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18249, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18250, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18251, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18252, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18253, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18254, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18255, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18256, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18257, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18258, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18259, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18260, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18261, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18262, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "states": [ + { + "default": true, + "id": 21424 + } + ] + }, + "minecraft:sculk_catalyst": { + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21553, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 21554, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20944, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20945, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20946, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20947, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20948, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20949, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20950, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20951, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20952, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20953, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20954, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20955, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20956, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20957, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20958, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20959, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20960, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20961, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20962, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20963, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20964, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20965, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20966, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20967, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20968, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20969, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20970, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20971, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20972, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20973, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20974, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20975, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20976, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20977, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20978, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20979, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20980, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20981, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20982, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20983, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20984, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20985, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20986, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20987, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20988, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20989, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20990, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20991, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20992, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20993, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 20994, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 20995, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 20996, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 20997, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 20998, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 20999, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21000, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21001, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21002, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21003, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21004, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21005, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21006, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21007, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21008, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21009, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21010, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21011, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21012, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21013, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21014, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21015, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21016, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21017, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21018, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21019, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21020, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21021, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21022, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21023, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21024, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21025, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21026, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21027, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21028, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21029, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21030, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21031, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21032, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21033, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 21034, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 21035, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 21036, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 21037, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 21038, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 21039, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21555, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 21556, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 21557, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 21558, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 21559, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 21560, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 21561, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21562, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21425, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21426, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21427, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21428, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21429, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21430, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21431, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21432, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21433, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21434, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21435, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21436, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21437, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21438, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21439, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21440, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21441, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21442, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21443, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21444, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21445, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21446, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21447, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21448, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21449, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21450, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21451, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21452, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21453, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21454, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21455, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21456, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21457, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21458, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21459, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21460, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21461, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21462, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21463, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21464, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21465, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21466, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21467, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21468, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21469, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21470, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21471, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21472, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21473, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21474, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21475, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21476, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21477, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21478, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21479, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21480, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21481, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21482, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21483, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21484, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21485, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21486, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21487, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21488, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21489, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21490, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21491, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21492, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21493, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21494, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21495, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21496, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21497, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21498, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21499, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21500, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21501, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21502, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21503, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21504, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21505, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21506, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21507, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21508, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21509, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21510, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21511, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21512, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21513, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21514, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21515, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21516, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21517, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21518, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21519, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21520, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21521, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21522, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21523, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21524, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21525, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21526, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21527, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21528, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21529, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21530, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21531, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21532, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21533, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21534, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21535, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21536, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21537, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21538, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21539, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21540, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21541, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21542, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21543, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21544, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21545, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21546, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21547, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21548, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21549, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21550, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21551, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 21552, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "states": [ + { + "default": true, + "id": 10583 + } + ] + }, + "minecraft:sea_pickle": { + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12792, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 12793, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 12794, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 12795, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 12796, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 12797, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 12798, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 12799, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "states": [ + { + "default": true, + "id": 2008 + } + ] + }, + "minecraft:shroomlight": { + "states": [ + { + "default": true, + "id": 18469 + } + ] + }, + "minecraft:shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12421, + "properties": { + "facing": "north" + } + }, + { + "id": 12422, + "properties": { + "facing": "east" + } + }, + { + "id": 12423, + "properties": { + "facing": "south" + } + }, + { + "id": 12424, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12425, + "properties": { + "facing": "up" + } + }, + { + "id": 12426, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8827, + "properties": { + "rotation": "0" + } + }, + { + "id": 8828, + "properties": { + "rotation": "1" + } + }, + { + "id": 8829, + "properties": { + "rotation": "2" + } + }, + { + "id": 8830, + "properties": { + "rotation": "3" + } + }, + { + "id": 8831, + "properties": { + "rotation": "4" + } + }, + { + "id": 8832, + "properties": { + "rotation": "5" + } + }, + { + "id": 8833, + "properties": { + "rotation": "6" + } + }, + { + "id": 8834, + "properties": { + "rotation": "7" + } + }, + { + "id": 8835, + "properties": { + "rotation": "8" + } + }, + { + "id": 8836, + "properties": { + "rotation": "9" + } + }, + { + "id": 8837, + "properties": { + "rotation": "10" + } + }, + { + "id": 8838, + "properties": { + "rotation": "11" + } + }, + { + "id": 8839, + "properties": { + "rotation": "12" + } + }, + { + "id": 8840, + "properties": { + "rotation": "13" + } + }, + { + "id": 8841, + "properties": { + "rotation": "14" + } + }, + { + "id": 8842, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8843, + "properties": { + "facing": "north" + } + }, + { + "id": 8844, + "properties": { + "facing": "south" + } + }, + { + "id": 8845, + "properties": { + "facing": "west" + } + }, + { + "id": 8846, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:slime_block": { + "states": [ + { + "default": true, + "id": 10224 + } + ] + }, + "minecraft:small_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20928, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 20929, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 20930, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 20931, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 20932, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 20933, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 20934, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 20935, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 20936, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20937, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 20938, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 20939, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22429, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 22430, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 22431, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22432, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 22433, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 22434, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 22435, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 22436, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 22437, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 22438, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 22439, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 22440, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 22441, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 22442, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 22443, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 22444, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "states": [ + { + "default": true, + "id": 18325 + } + ] + }, + "minecraft:smoker": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18279, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18280, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18281, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18282, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18283, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18284, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18285, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18286, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "states": [ + { + "default": true, + "id": 24102 + } + ] + }, + "minecraft:smooth_quartz": { + "states": [ + { + "default": true, + "id": 11167 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13983, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13984, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13985, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13986, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13987, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13988, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13461, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13462, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13463, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13464, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13465, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13466, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13467, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13468, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13469, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13470, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13481, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13482, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13483, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13484, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13485, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13486, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13487, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13488, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13489, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13490, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13501, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13502, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13503, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13504, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13505, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13506, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13507, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13508, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13509, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13510, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13521, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13522, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13523, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13524, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13525, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13526, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13527, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13528, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13529, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13530, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ + { + "default": true, + "id": 11168 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13947, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13948, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13949, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13950, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13951, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13952, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12901, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12902, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12903, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12904, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12905, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12906, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12907, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12908, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12909, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12910, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12911, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12912, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12913, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12914, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12915, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12916, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12917, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12921, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12922, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12923, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12924, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12925, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12926, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12927, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12928, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12929, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12930, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12931, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12932, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12933, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12934, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12935, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12936, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12937, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12941, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12942, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12943, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12944, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12945, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12946, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12947, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12948, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12949, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12950, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12951, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12952, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12953, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12954, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12955, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12956, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12957, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12961, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12962, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12963, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12964, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12965, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12966, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12967, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12968, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12969, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12970, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12971, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12972, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12973, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12974, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12975, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12976, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12977, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "states": [ + { + "default": true, + "id": 11166 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13977, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13978, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13979, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13980, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13981, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13982, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, "minecraft:smooth_sandstone_stairs": { "properties": { "facing": [ @@ -211062,7 +214745,7 @@ }, "states": [ { - "id": 13363, + "id": 13381, "properties": { "facing": "north", "half": "top", @@ -211071,7 +214754,7 @@ } }, { - "id": 13364, + "id": 13382, "properties": { "facing": "north", "half": "top", @@ -211080,7 +214763,7 @@ } }, { - "id": 13365, + "id": 13383, "properties": { "facing": "north", "half": "top", @@ -211089,7 +214772,7 @@ } }, { - "id": 13366, + "id": 13384, "properties": { "facing": "north", "half": "top", @@ -211098,7 +214781,7 @@ } }, { - "id": 13367, + "id": 13385, "properties": { "facing": "north", "half": "top", @@ -211107,7 +214790,7 @@ } }, { - "id": 13368, + "id": 13386, "properties": { "facing": "north", "half": "top", @@ -211116,7 +214799,7 @@ } }, { - "id": 13369, + "id": 13387, "properties": { "facing": "north", "half": "top", @@ -211125,7 +214808,7 @@ } }, { - "id": 13370, + "id": 13388, "properties": { "facing": "north", "half": "top", @@ -211134,7 +214817,7 @@ } }, { - "id": 13371, + "id": 13389, "properties": { "facing": "north", "half": "top", @@ -211143,7 +214826,7 @@ } }, { - "id": 13372, + "id": 13390, "properties": { "facing": "north", "half": "top", @@ -211152,7 +214835,7 @@ } }, { - "id": 13373, + "id": 13391, "properties": { "facing": "north", "half": "bottom", @@ -211162,250 +214845,250 @@ }, { "default": true, - "id": 13374, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13375, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13376, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13377, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13378, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13379, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13380, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13381, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13382, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13383, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13384, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13385, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13386, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13387, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13388, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13389, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13390, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13391, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13392, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13393, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13394, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13395, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13396, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13397, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13398, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13399, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13400, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13401, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13402, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13403, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13404, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13405, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13406, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13407, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13408, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13409, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13410, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13412, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13413, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13414, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13415, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13416, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13417, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13419, "properties": { "facing": "south", "half": "bottom", @@ -211414,7 +215097,7 @@ } }, { - "id": 13402, + "id": 13420, "properties": { "facing": "south", "half": "bottom", @@ -211422,174 +215105,12 @@ "waterlogged": "false" } }, - { - "id": 13403, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13404, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13405, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13406, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13407, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13408, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13409, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13410, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13411, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13412, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13413, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13414, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13415, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13416, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13417, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13418, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13419, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13420, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13421, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -211597,175 +215118,337 @@ "id": 13422, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13423, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13424, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13425, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13426, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13427, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13428, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13429, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13430, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13431, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13432, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13433, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13434, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13435, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13436, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13437, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13438, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13439, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13440, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13441, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13442, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13443, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13444, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13445, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13446, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13447, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13448, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13449, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13450, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13451, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13452, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13453, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13454, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13455, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13456, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13457, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13459, "properties": { "facing": "east", "half": "bottom", @@ -211774,7 +215457,7 @@ } }, { - "id": 13442, + "id": 13460, "properties": { "facing": "east", "half": "bottom", @@ -211788,7 +215471,7 @@ "states": [ { "default": true, - "id": 11161 + "id": 11165 } ] }, @@ -211806,21 +215489,21 @@ }, "states": [ { - "id": 11083, + "id": 11087, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11084, + "id": 11088, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11085, + "id": 11089, "properties": { "type": "bottom", "waterlogged": "true" @@ -211828,21 +215511,21 @@ }, { "default": true, - "id": 11086, + "id": 11090, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11087, + "id": 11091, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11088, + "id": 11092, "properties": { "type": "double", "waterlogged": "false" @@ -211850,6 +215533,36 @@ } ] }, + "minecraft:sniffer_egg": { + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12659, + "properties": { + "hatch": "0" + } + }, + { + "id": 12660, + "properties": { + "hatch": "1" + } + }, + { + "id": 12661, + "properties": { + "hatch": "2" + } + } + ] + }, "minecraft:snow": { "properties": { "layers": [ @@ -211866,49 +215579,49 @@ "states": [ { "default": true, - "id": 5768, + "id": 5772, "properties": { "layers": "1" } }, { - "id": 5769, + "id": 5773, "properties": { "layers": "2" } }, { - "id": 5770, + "id": 5774, "properties": { "layers": "3" } }, { - "id": 5771, + "id": 5775, "properties": { "layers": "4" } }, { - "id": 5772, + "id": 5776, "properties": { "layers": "5" } }, { - "id": 5773, + "id": 5777, "properties": { "layers": "6" } }, { - "id": 5774, + "id": 5778, "properties": { "layers": "7" } }, { - "id": 5775, + "id": 5779, "properties": { "layers": "8" } @@ -211919,7 +215632,7 @@ "states": [ { "default": true, - "id": 5777 + "id": 5781 } ] }, @@ -211946,7 +215659,7 @@ }, "states": [ { - "id": 18384, + "id": 18402, "properties": { "facing": "north", "lit": "true", @@ -211955,7 +215668,7 @@ } }, { - "id": 18385, + "id": 18403, "properties": { "facing": "north", "lit": "true", @@ -211964,7 +215677,7 @@ } }, { - "id": 18386, + "id": 18404, "properties": { "facing": "north", "lit": "true", @@ -211974,187 +215687,187 @@ }, { "default": true, - "id": 18387, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18388, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18389, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18390, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18391, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18392, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18393, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18394, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18395, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18396, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18397, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18398, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18399, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18400, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18401, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18402, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18403, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18404, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { "id": 18405, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", + "facing": "north", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" } }, { "id": 18406, "properties": { - "facing": "west", + "facing": "north", "lit": "false", - "signal_fire": "false", + "signal_fire": "true", "waterlogged": "true" } }, { "id": 18407, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18408, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18409, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18410, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18411, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18412, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18413, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18414, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18415, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18416, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18417, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18418, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18419, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18420, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18421, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18422, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18423, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18424, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18425, "properties": { "facing": "west", "lit": "false", @@ -212163,7 +215876,7 @@ } }, { - "id": 18408, + "id": 18426, "properties": { "facing": "east", "lit": "true", @@ -212172,7 +215885,7 @@ } }, { - "id": 18409, + "id": 18427, "properties": { "facing": "east", "lit": "true", @@ -212181,7 +215894,7 @@ } }, { - "id": 18410, + "id": 18428, "properties": { "facing": "east", "lit": "true", @@ -212190,7 +215903,7 @@ } }, { - "id": 18411, + "id": 18429, "properties": { "facing": "east", "lit": "true", @@ -212199,7 +215912,7 @@ } }, { - "id": 18412, + "id": 18430, "properties": { "facing": "east", "lit": "false", @@ -212208,7 +215921,7 @@ } }, { - "id": 18413, + "id": 18431, "properties": { "facing": "east", "lit": "false", @@ -212217,7 +215930,7 @@ } }, { - "id": 18414, + "id": 18432, "properties": { "facing": "east", "lit": "false", @@ -212226,7 +215939,7 @@ } }, { - "id": 18415, + "id": 18433, "properties": { "facing": "east", "lit": "false", @@ -212240,7 +215953,7 @@ "states": [ { "default": true, - "id": 2868 + "id": 2872 } ] }, @@ -212257,21 +215970,21 @@ }, "states": [ { - "id": 18348, + "id": 18366, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 18349, + "id": 18367, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 18350, + "id": 18368, "properties": { "hanging": "false", "waterlogged": "true" @@ -212279,7 +215992,7 @@ }, { "default": true, - "id": 18351, + "id": 18369, "properties": { "hanging": "false", "waterlogged": "false" @@ -212291,7 +216004,7 @@ "states": [ { "default": true, - "id": 5847 + "id": 5851 } ] }, @@ -212299,7 +216012,7 @@ "states": [ { "default": true, - "id": 5848 + "id": 5852 } ] }, @@ -212307,7 +216020,7 @@ "states": [ { "default": true, - "id": 5855 + "id": 5859 } ] }, @@ -212323,25 +216036,25 @@ "states": [ { "default": true, - "id": 5856, + "id": 5860, "properties": { "facing": "north" } }, { - "id": 5857, + "id": 5861, "properties": { "facing": "south" } }, { - "id": 5858, + "id": 5862, "properties": { "facing": "west" } }, { - "id": 5859, + "id": 5863, "properties": { "facing": "east" } @@ -212352,7 +216065,7 @@ "states": [ { "default": true, - "id": 2869 + "id": 2873 } ] }, @@ -212360,7 +216073,7 @@ "states": [ { "default": true, - "id": 513 + "id": 517 } ] }, @@ -212368,7 +216081,7 @@ "states": [ { "default": true, - "id": 21966 + "id": 22368 } ] }, @@ -212391,43 +216104,11 @@ ] }, "states": [ - { - "id": 8631, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8632, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8633, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8634, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 8635, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -212435,7 +216116,7 @@ "id": 8636, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -212443,7 +216124,7 @@ "id": 8637, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -212451,12 +216132,44 @@ "id": 8638, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8639, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8640, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8641, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8642, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8643, "properties": { "face": "wall", "facing": "north", @@ -212465,42 +216178,10 @@ }, { "default": true, - "id": 8640, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8641, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8642, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8643, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 8644, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -212508,7 +216189,7 @@ "id": 8645, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -212516,39 +216197,39 @@ "id": 8646, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 8647, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 8648, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 8649, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 8650, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -212556,7 +216237,7 @@ "id": 8651, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -212564,7 +216245,7 @@ "id": 8652, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -212572,12 +216253,44 @@ "id": 8653, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 8654, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8655, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8656, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8657, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8658, "properties": { "face": "ceiling", "facing": "east", @@ -212612,52 +216325,12 @@ ] }, "states": [ - { - "id": 11677, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11678, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11679, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11680, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, { "id": 11681, "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -212667,7 +216340,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -212677,7 +216350,7 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -212687,13 +216360,53 @@ "properties": { "facing": "north", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } }, { "id": 11685, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11686, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11687, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11688, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11689, "properties": { "facing": "north", "half": "lower", @@ -212703,7 +216416,7 @@ } }, { - "id": 11686, + "id": 11690, "properties": { "facing": "north", "half": "lower", @@ -212713,7 +216426,7 @@ } }, { - "id": 11687, + "id": 11691, "properties": { "facing": "north", "half": "lower", @@ -212724,51 +216437,11 @@ }, { "default": true, - "id": 11688, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11689, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11690, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11691, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { "id": 11692, "properties": { "facing": "north", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -212776,9 +216449,9 @@ { "id": 11693, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -212786,9 +216459,9 @@ { "id": 11694, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -212796,9 +216469,9 @@ { "id": 11695, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -212806,9 +216479,9 @@ { "id": 11696, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", + "facing": "north", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -212818,7 +216491,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -212828,7 +216501,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -212838,7 +216511,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -212848,7 +216521,7 @@ "properties": { "facing": "south", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -212857,8 +216530,8 @@ "id": 11701, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -212867,8 +216540,8 @@ "id": 11702, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -212877,8 +216550,8 @@ "id": 11703, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -212887,8 +216560,8 @@ "id": 11704, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -212898,7 +216571,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -212908,7 +216581,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -212918,7 +216591,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -212928,7 +216601,7 @@ "properties": { "facing": "south", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -212936,9 +216609,9 @@ { "id": 11709, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -212946,9 +216619,9 @@ { "id": 11710, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -212956,9 +216629,9 @@ { "id": 11711, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -212966,9 +216639,9 @@ { "id": 11712, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", + "facing": "south", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -212978,7 +216651,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -212988,7 +216661,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -212998,7 +216671,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -213008,7 +216681,7 @@ "properties": { "facing": "west", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -213017,8 +216690,8 @@ "id": 11717, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -213027,8 +216700,8 @@ "id": 11718, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -213037,8 +216710,8 @@ "id": 11719, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -213047,8 +216720,8 @@ "id": 11720, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -213058,7 +216731,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -213068,7 +216741,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -213078,7 +216751,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -213088,7 +216761,7 @@ "properties": { "facing": "west", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -213096,9 +216769,9 @@ { "id": 11725, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "true" } @@ -213106,9 +216779,9 @@ { "id": 11726, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "true", "powered": "false" } @@ -213116,9 +216789,9 @@ { "id": 11727, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "true" } @@ -213126,9 +216799,9 @@ { "id": 11728, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", + "facing": "west", + "half": "lower", + "hinge": "right", "open": "false", "powered": "false" } @@ -213138,7 +216811,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -213148,7 +216821,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -213158,7 +216831,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } @@ -213168,7 +216841,7 @@ "properties": { "facing": "east", "half": "upper", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "false" } @@ -213177,8 +216850,8 @@ "id": 11733, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "true" } @@ -213187,8 +216860,8 @@ "id": 11734, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "true", "powered": "false" } @@ -213197,8 +216870,8 @@ "id": 11735, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "true" } @@ -213207,8 +216880,8 @@ "id": 11736, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", + "half": "upper", + "hinge": "right", "open": "false", "powered": "false" } @@ -213218,7 +216891,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "true" } @@ -213228,7 +216901,7 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "true", "powered": "false" } @@ -213238,13 +216911,53 @@ "properties": { "facing": "east", "half": "lower", - "hinge": "right", + "hinge": "left", "open": "false", "powered": "true" } }, { "id": 11740, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11741, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11742, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11743, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11744, "properties": { "facing": "east", "half": "lower", @@ -213279,52 +216992,12 @@ ] }, "states": [ - { - "id": 11421, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11422, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11423, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11424, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 11425, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -213334,7 +217007,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -213344,7 +217017,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -213354,7 +217027,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -213363,8 +217036,8 @@ "id": 11429, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -213373,8 +217046,8 @@ "id": 11430, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -213383,8 +217056,8 @@ "id": 11431, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -213393,8 +217066,8 @@ "id": 11432, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -213404,7 +217077,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -213414,7 +217087,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -213424,7 +217097,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -213434,7 +217107,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -213442,9 +217115,9 @@ { "id": 11437, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -213452,9 +217125,9 @@ { "id": 11438, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -213462,9 +217135,9 @@ { "id": 11439, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -213472,9 +217145,9 @@ { "id": 11440, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -213484,7 +217157,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -213494,7 +217167,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -213504,7 +217177,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -213514,7 +217187,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -213523,8 +217196,8 @@ "id": 11445, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -213533,8 +217206,8 @@ "id": 11446, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -213543,8 +217216,8 @@ "id": 11447, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -213553,8 +217226,8 @@ "id": 11448, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -213564,7 +217237,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -213574,13 +217247,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 11451, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11452, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11453, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11454, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11455, "properties": { "east": "false", "north": "false", @@ -213591,7 +217304,7 @@ }, { "default": true, - "id": 11452, + "id": 11456, "properties": { "east": "false", "north": "false", @@ -213624,47 +217337,11 @@ ] }, "states": [ - { - "id": 11165, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11166, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11167, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11168, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11169, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -213673,13 +217350,49 @@ "id": 11170, "properties": { "facing": "north", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } }, { "id": 11171, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11172, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11173, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11174, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11175, "properties": { "facing": "north", "in_wall": "false", @@ -213689,7 +217402,7 @@ }, { "default": true, - "id": 11172, + "id": 11176, "properties": { "facing": "north", "in_wall": "false", @@ -213697,47 +217410,11 @@ "powered": "false" } }, - { - "id": 11173, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11174, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11175, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11176, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, { "id": 11177, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -213746,7 +217423,7 @@ "id": 11178, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -213755,7 +217432,7 @@ "id": 11179, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -213764,7 +217441,7 @@ "id": 11180, "properties": { "facing": "south", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -213772,8 +217449,8 @@ { "id": 11181, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "true" } @@ -213781,8 +217458,8 @@ { "id": 11182, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "true", "powered": "false" } @@ -213790,8 +217467,8 @@ { "id": 11183, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "true" } @@ -213799,8 +217476,8 @@ { "id": 11184, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "south", + "in_wall": "false", "open": "false", "powered": "false" } @@ -213809,7 +217486,7 @@ "id": 11185, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -213818,7 +217495,7 @@ "id": 11186, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -213827,7 +217504,7 @@ "id": 11187, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } @@ -213836,7 +217513,7 @@ "id": 11188, "properties": { "facing": "west", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "false" } @@ -213844,8 +217521,8 @@ { "id": 11189, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "true" } @@ -213853,8 +217530,8 @@ { "id": 11190, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "true", "powered": "false" } @@ -213862,8 +217539,8 @@ { "id": 11191, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "true" } @@ -213871,8 +217548,8 @@ { "id": 11192, "properties": { - "facing": "east", - "in_wall": "true", + "facing": "west", + "in_wall": "false", "open": "false", "powered": "false" } @@ -213881,7 +217558,7 @@ "id": 11193, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "true" } @@ -213890,7 +217567,7 @@ "id": 11194, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "true", "powered": "false" } @@ -213899,13 +217576,49 @@ "id": 11195, "properties": { "facing": "east", - "in_wall": "false", + "in_wall": "true", "open": "false", "powered": "true" } }, { "id": 11196, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11197, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11198, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11199, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11200, "properties": { "facing": "east", "in_wall": "false", @@ -213945,43 +217658,11 @@ ] }, "states": [ - { - "id": 4894, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4895, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4896, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4897, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 4898, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -213989,7 +217670,7 @@ "id": 4899, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -213997,7 +217678,7 @@ "id": 4900, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -214005,7 +217686,7 @@ "id": 4901, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -214013,7 +217694,7 @@ "id": 4902, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -214021,7 +217702,7 @@ "id": 4903, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -214029,7 +217710,7 @@ "id": 4904, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -214037,7 +217718,7 @@ "id": 4905, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -214045,7 +217726,7 @@ "id": 4906, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -214053,7 +217734,7 @@ "id": 4907, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -214061,7 +217742,7 @@ "id": 4908, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -214069,7 +217750,7 @@ "id": 4909, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -214077,7 +217758,7 @@ "id": 4910, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -214085,7 +217766,7 @@ "id": 4911, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -214093,7 +217774,7 @@ "id": 4912, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -214101,7 +217782,7 @@ "id": 4913, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -214109,7 +217790,7 @@ "id": 4914, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -214117,7 +217798,7 @@ "id": 4915, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -214125,7 +217806,7 @@ "id": 4916, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -214133,7 +217814,7 @@ "id": 4917, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -214141,7 +217822,7 @@ "id": 4918, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -214149,7 +217830,7 @@ "id": 4919, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -214157,7 +217838,7 @@ "id": 4920, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -214165,7 +217846,7 @@ "id": 4921, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -214173,7 +217854,7 @@ "id": 4922, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -214181,7 +217862,7 @@ "id": 4923, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -214189,7 +217870,7 @@ "id": 4924, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -214197,12 +217878,44 @@ "id": 4925, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 4926, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4927, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4928, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4929, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4930, "properties": { "attached": "false", "rotation": "0", @@ -214211,50 +217924,18 @@ }, { "default": true, - "id": 4927, + "id": 4931, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 4928, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4929, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4930, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4931, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4932, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -214262,7 +217943,7 @@ "id": 4933, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -214270,7 +217951,7 @@ "id": 4934, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -214278,7 +217959,7 @@ "id": 4935, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -214286,7 +217967,7 @@ "id": 4936, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -214294,7 +217975,7 @@ "id": 4937, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -214302,7 +217983,7 @@ "id": 4938, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -214310,7 +217991,7 @@ "id": 4939, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -214318,7 +217999,7 @@ "id": 4940, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -214326,7 +218007,7 @@ "id": 4941, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -214334,7 +218015,7 @@ "id": 4942, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -214342,7 +218023,7 @@ "id": 4943, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -214350,7 +218031,7 @@ "id": 4944, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -214358,7 +218039,7 @@ "id": 4945, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -214366,7 +218047,7 @@ "id": 4946, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -214374,7 +218055,7 @@ "id": 4947, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -214382,7 +218063,7 @@ "id": 4948, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -214390,7 +218071,7 @@ "id": 4949, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -214398,7 +218079,7 @@ "id": 4950, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -214406,7 +218087,7 @@ "id": 4951, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -214414,7 +218095,7 @@ "id": 4952, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -214422,7 +218103,7 @@ "id": 4953, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -214430,7 +218111,7 @@ "id": 4954, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -214438,7 +218119,7 @@ "id": 4955, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -214446,12 +218127,44 @@ "id": 4956, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4957, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4958, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4961, "properties": { "attached": "false", "rotation": "15", @@ -214481,42 +218194,10 @@ ] }, "states": [ - { - "id": 261, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 262, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 263, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 264, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 265, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -214524,7 +218205,7 @@ { "id": 266, "properties": { - "distance": "2", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -214532,7 +218213,7 @@ { "id": 267, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -214540,7 +218221,7 @@ { "id": 268, "properties": { - "distance": "2", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -214548,7 +218229,7 @@ { "id": 269, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -214556,7 +218237,7 @@ { "id": 270, "properties": { - "distance": "3", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -214564,7 +218245,7 @@ { "id": 271, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -214572,7 +218253,7 @@ { "id": 272, "properties": { - "distance": "3", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -214580,7 +218261,7 @@ { "id": 273, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -214588,7 +218269,7 @@ { "id": 274, "properties": { - "distance": "4", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -214596,7 +218277,7 @@ { "id": 275, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -214604,7 +218285,7 @@ { "id": 276, "properties": { - "distance": "4", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -214612,7 +218293,7 @@ { "id": 277, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -214620,7 +218301,7 @@ { "id": 278, "properties": { - "distance": "5", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -214628,7 +218309,7 @@ { "id": 279, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -214636,7 +218317,7 @@ { "id": 280, "properties": { - "distance": "5", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -214644,7 +218325,7 @@ { "id": 281, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -214652,7 +218333,7 @@ { "id": 282, "properties": { - "distance": "6", + "distance": "5", "persistent": "true", "waterlogged": "false" } @@ -214660,7 +218341,7 @@ { "id": 283, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "true" } @@ -214668,7 +218349,7 @@ { "id": 284, "properties": { - "distance": "6", + "distance": "5", "persistent": "false", "waterlogged": "false" } @@ -214676,7 +218357,7 @@ { "id": 285, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "true" } @@ -214684,13 +218365,45 @@ { "id": 286, "properties": { - "distance": "7", + "distance": "6", "persistent": "true", "waterlogged": "false" } }, { "id": 287, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 288, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 289, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 290, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 291, "properties": { "distance": "7", "persistent": "false", @@ -214699,7 +218412,7 @@ }, { "default": true, - "id": 288, + "id": 292, "properties": { "distance": "7", "persistent": "false", @@ -214718,20 +218431,20 @@ }, "states": [ { - "id": 129, + "id": 133, "properties": { "axis": "x" } }, { "default": true, - "id": 130, + "id": 134, "properties": { "axis": "y" } }, { - "id": 131, + "id": 135, "properties": { "axis": "z" } @@ -214755,14 +218468,14 @@ }, "states": [ { - "id": 5714, + "id": 5718, "properties": { "powered": "true" } }, { "default": true, - "id": 5715, + "id": 5719, "properties": { "powered": "false" } @@ -214819,7 +218532,7 @@ }, "states": [ { - "id": 4330, + "id": 4334, "properties": { "rotation": "0", "waterlogged": "true" @@ -214827,217 +218540,217 @@ }, { "default": true, - "id": 4331, + "id": 4335, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4332, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4333, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4334, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4335, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 4336, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, { "id": 4337, "properties": { - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, { "id": 4338, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, { "id": 4339, "properties": { - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, { "id": 4340, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, { "id": 4341, "properties": { - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, { "id": 4342, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, { "id": 4343, "properties": { - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, { "id": 4344, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, { "id": 4345, "properties": { - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, { "id": 4346, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, { "id": 4347, "properties": { - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, { "id": 4348, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, { "id": 4349, "properties": { - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, { "id": 4350, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, { "id": 4351, "properties": { - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, { "id": 4352, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, { "id": 4353, "properties": { - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, { "id": 4354, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, { "id": 4355, "properties": { - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, { "id": 4356, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, { "id": 4357, "properties": { - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, { "id": 4358, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, { "id": 4359, "properties": { - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, { "id": 4360, "properties": { - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 4361, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4362, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4363, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4364, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4365, "properties": { "rotation": "15", "waterlogged": "false" @@ -215059,21 +218772,21 @@ }, "states": [ { - "id": 11023, + "id": 11027, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11024, + "id": 11028, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11025, + "id": 11029, "properties": { "type": "bottom", "waterlogged": "true" @@ -215081,21 +218794,21 @@ }, { "default": true, - "id": 11026, + "id": 11030, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11027, + "id": 11031, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11028, + "id": 11032, "properties": { "type": "double", "waterlogged": "false" @@ -215128,48 +218841,12 @@ ] }, "states": [ - { - "id": 7662, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7663, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7664, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7665, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 7666, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215178,7 +218855,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215187,7 +218864,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215196,7 +218873,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215205,7 +218882,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215214,12 +218891,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7672, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7676, "properties": { "facing": "north", "half": "bottom", @@ -215229,47 +218942,11 @@ }, { "default": true, - "id": 7673, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7674, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7675, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7676, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 7677, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215278,7 +218955,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215287,7 +218964,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215296,7 +218973,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215305,43 +218982,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7682, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7683, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7684, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7685, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215350,7 +219027,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215359,7 +219036,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215368,7 +219045,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215377,7 +219054,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215386,7 +219063,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215395,7 +219072,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -215403,8 +219080,8 @@ "id": 7692, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -215412,8 +219089,8 @@ "id": 7693, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -215421,8 +219098,8 @@ "id": 7694, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -215430,8 +219107,8 @@ "id": 7695, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215440,7 +219117,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215449,7 +219126,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215458,7 +219135,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215467,7 +219144,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215476,7 +219153,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215485,43 +219162,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7702, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7703, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7704, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7705, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215530,7 +219207,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215539,7 +219216,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215548,7 +219225,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215557,7 +219234,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215566,7 +219243,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215575,7 +219252,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -215583,8 +219260,8 @@ "id": 7712, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -215592,8 +219269,8 @@ "id": 7713, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -215601,8 +219278,8 @@ "id": 7714, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -215610,8 +219287,8 @@ "id": 7715, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215620,7 +219297,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215629,7 +219306,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215638,7 +219315,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215647,7 +219324,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215656,7 +219333,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215665,43 +219342,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7722, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7723, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7724, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7725, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215710,7 +219387,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215719,7 +219396,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215728,7 +219405,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215737,7 +219414,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215746,7 +219423,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -215755,7 +219432,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -215763,8 +219440,8 @@ "id": 7732, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -215772,8 +219449,8 @@ "id": 7733, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -215781,8 +219458,8 @@ "id": 7734, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -215790,8 +219467,8 @@ "id": 7735, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -215800,7 +219477,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -215809,7 +219486,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -215818,7 +219495,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -215827,7 +219504,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -215836,12 +219513,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 7741, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7745, "properties": { "facing": "east", "half": "bottom", @@ -215877,52 +219590,12 @@ ] }, "states": [ - { - "id": 6022, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6023, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6024, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6025, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6026, "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -215932,7 +219605,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -215942,7 +219615,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -215952,7 +219625,7 @@ "properties": { "facing": "north", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -215961,8 +219634,8 @@ "id": 6030, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -215971,8 +219644,8 @@ "id": 6031, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -215981,8 +219654,8 @@ "id": 6032, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -215991,8 +219664,8 @@ "id": 6033, "properties": { "facing": "north", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216002,7 +219675,7 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216012,13 +219685,53 @@ "properties": { "facing": "north", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } }, { "id": 6036, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6037, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6038, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6039, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6040, "properties": { "facing": "north", "half": "bottom", @@ -216029,7 +219742,7 @@ }, { "default": true, - "id": 6037, + "id": 6041, "properties": { "facing": "north", "half": "bottom", @@ -216038,52 +219751,12 @@ "waterlogged": "false" } }, - { - "id": 6038, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6039, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6040, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6041, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, { "id": 6042, "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216093,7 +219766,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216103,7 +219776,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -216113,7 +219786,7 @@ "properties": { "facing": "south", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -216122,8 +219795,8 @@ "id": 6046, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -216132,8 +219805,8 @@ "id": 6047, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -216142,8 +219815,8 @@ "id": 6048, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -216152,8 +219825,8 @@ "id": 6049, "properties": { "facing": "south", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216163,7 +219836,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216173,7 +219846,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216183,7 +219856,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -216193,7 +219866,7 @@ "properties": { "facing": "south", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -216201,9 +219874,9 @@ { "id": 6054, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -216211,9 +219884,9 @@ { "id": 6055, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -216221,9 +219894,9 @@ { "id": 6056, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -216231,9 +219904,9 @@ { "id": 6057, "properties": { - "facing": "west", - "half": "top", - "open": "true", + "facing": "south", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216243,7 +219916,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216253,7 +219926,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216263,7 +219936,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -216273,7 +219946,7 @@ "properties": { "facing": "west", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -216282,8 +219955,8 @@ "id": 6062, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -216292,8 +219965,8 @@ "id": 6063, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -216302,8 +219975,8 @@ "id": 6064, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -216312,8 +219985,8 @@ "id": 6065, "properties": { "facing": "west", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216323,7 +219996,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216333,7 +220006,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216343,7 +220016,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -216353,7 +220026,7 @@ "properties": { "facing": "west", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -216361,9 +220034,9 @@ { "id": 6070, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -216371,9 +220044,9 @@ { "id": 6071, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -216381,9 +220054,9 @@ { "id": 6072, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -216391,9 +220064,9 @@ { "id": 6073, "properties": { - "facing": "east", - "half": "top", - "open": "true", + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216403,7 +220076,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216413,7 +220086,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216423,7 +220096,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } @@ -216433,7 +220106,7 @@ "properties": { "facing": "east", "half": "top", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "false" } @@ -216442,8 +220115,8 @@ "id": 6078, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "true" } @@ -216452,8 +220125,8 @@ "id": 6079, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "true", "waterlogged": "false" } @@ -216462,8 +220135,8 @@ "id": 6080, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "true" } @@ -216472,8 +220145,8 @@ "id": 6081, "properties": { "facing": "east", - "half": "bottom", - "open": "true", + "half": "top", + "open": "false", "powered": "false", "waterlogged": "false" } @@ -216483,7 +220156,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "true" } @@ -216493,7 +220166,7 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "true", "waterlogged": "false" } @@ -216503,13 +220176,53 @@ "properties": { "facing": "east", "half": "bottom", - "open": "false", + "open": "true", "powered": "false", "waterlogged": "true" } }, { "id": 6085, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6086, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6087, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6088, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6089, "properties": { "facing": "east", "half": "bottom", @@ -216535,7 +220248,7 @@ }, "states": [ { - "id": 5542, + "id": 5546, "properties": { "facing": "north", "waterlogged": "true" @@ -216543,49 +220256,49 @@ }, { "default": true, - "id": 5543, + "id": 5547, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5544, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5545, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5546, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5547, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5548, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5549, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5550, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5551, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5552, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5549, + "id": 5553, "properties": { "facing": "east", "waterlogged": "false" @@ -216608,7 +220321,7 @@ }, "states": [ { - "id": 4766, + "id": 4770, "properties": { "facing": "north", "waterlogged": "true" @@ -216616,49 +220329,49 @@ }, { "default": true, - "id": 4767, + "id": 4771, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 4768, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4769, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4770, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4771, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 4772, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4775, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4776, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4773, + "id": 4777, "properties": { "facing": "east", "waterlogged": "false" @@ -216676,20 +220389,20 @@ }, "states": [ { - "id": 188, + "id": 192, "properties": { "axis": "x" } }, { "default": true, - "id": 189, + "id": 193, "properties": { "axis": "y" } }, { - "id": 190, + "id": 194, "properties": { "axis": "z" } @@ -216713,42 +220426,42 @@ }, "states": [ { - "id": 1988, + "id": 1992, "properties": { "extended": "true", "facing": "north" } }, { - "id": 1989, + "id": 1993, "properties": { "extended": "true", "facing": "east" } }, { - "id": 1990, + "id": 1994, "properties": { "extended": "true", "facing": "south" } }, { - "id": 1991, + "id": 1995, "properties": { "extended": "true", "facing": "west" } }, { - "id": 1992, + "id": 1996, "properties": { "extended": "true", "facing": "up" } }, { - "id": 1993, + "id": 1997, "properties": { "extended": "true", "facing": "down" @@ -216756,42 +220469,42 @@ }, { "default": true, - "id": 1994, + "id": 1998, "properties": { "extended": "false", "facing": "north" } }, { - "id": 1995, + "id": 1999, "properties": { "extended": "false", "facing": "east" } }, { - "id": 1996, + "id": 2000, "properties": { "extended": "false", "facing": "south" } }, { - "id": 1997, + "id": 2001, "properties": { "extended": "false", "facing": "west" } }, { - "id": 1998, + "id": 2002, "properties": { "extended": "false", "facing": "up" } }, { - "id": 1999, + "id": 2003, "properties": { "extended": "false", "facing": "down" @@ -216821,21 +220534,21 @@ }, "states": [ { - "id": 11119, + "id": 11123, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11120, + "id": 11124, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11121, + "id": 11125, "properties": { "type": "bottom", "waterlogged": "true" @@ -216843,21 +220556,21 @@ }, { "default": true, - "id": 11122, + "id": 11126, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11123, + "id": 11127, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11124, + "id": 11128, "properties": { "type": "double", "waterlogged": "false" @@ -216890,48 +220603,12 @@ ] }, "states": [ - { - "id": 7105, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7106, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7107, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7108, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, { "id": 7109, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -216940,7 +220617,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -216949,7 +220626,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -216958,7 +220635,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -216967,7 +220644,7 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -216976,12 +220653,48 @@ "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7119, "properties": { "facing": "north", "half": "bottom", @@ -216991,47 +220704,11 @@ }, { "default": true, - "id": 7116, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7117, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7118, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7119, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { "id": 7120, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217040,7 +220717,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217049,7 +220726,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217058,7 +220735,7 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217067,43 +220744,43 @@ "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7125, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7126, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7127, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7128, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217112,7 +220789,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217121,7 +220798,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217130,7 +220807,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217139,7 +220816,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217148,7 +220825,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217157,7 +220834,7 @@ "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -217165,8 +220842,8 @@ "id": 7135, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -217174,8 +220851,8 @@ "id": 7136, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -217183,8 +220860,8 @@ "id": 7137, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -217192,8 +220869,8 @@ "id": 7138, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217202,7 +220879,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217211,7 +220888,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217220,7 +220897,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217229,7 +220906,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217238,7 +220915,7 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217247,43 +220924,43 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7145, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7146, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7147, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7148, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217292,7 +220969,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217301,7 +220978,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217310,7 +220987,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217319,7 +220996,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217328,7 +221005,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217337,7 +221014,7 @@ "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -217345,8 +221022,8 @@ "id": 7155, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -217354,8 +221031,8 @@ "id": 7156, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -217363,8 +221040,8 @@ "id": 7157, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -217372,8 +221049,8 @@ "id": 7158, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217382,7 +221059,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217391,7 +221068,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217400,7 +221077,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217409,7 +221086,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217418,7 +221095,7 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217427,43 +221104,43 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 7165, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 7166, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 7167, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 7168, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217472,7 +221149,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217481,7 +221158,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217490,7 +221167,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217499,7 +221176,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217508,7 +221185,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, @@ -217517,7 +221194,7 @@ "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "false" } }, @@ -217525,8 +221202,8 @@ "id": 7175, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, @@ -217534,8 +221211,8 @@ "id": 7176, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, @@ -217543,8 +221220,8 @@ "id": 7177, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, @@ -217552,8 +221229,8 @@ "id": 7178, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, @@ -217562,7 +221239,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "true" } }, @@ -217571,7 +221248,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "shape": "straight", "waterlogged": "false" } }, @@ -217580,7 +221257,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "true" } }, @@ -217589,7 +221266,7 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "shape": "inner_left", "waterlogged": "false" } }, @@ -217598,12 +221275,48 @@ "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 7184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7188, "properties": { "facing": "east", "half": "bottom", @@ -217646,7 +221359,7 @@ }, "states": [ { - "id": 15621, + "id": 15639, "properties": { "east": "none", "north": "none", @@ -217657,7 +221370,7 @@ } }, { - "id": 15622, + "id": 15640, "properties": { "east": "none", "north": "none", @@ -217668,7 +221381,7 @@ } }, { - "id": 15623, + "id": 15641, "properties": { "east": "none", "north": "none", @@ -217680,210 +221393,12 @@ }, { "default": true, - "id": 15624, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15625, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15626, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15627, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15628, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15629, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15630, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15631, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15632, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15633, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15634, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15635, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15636, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15637, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15638, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15639, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15640, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15641, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { "id": 15642, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -217893,8 +221408,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -217904,8 +221419,8 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -217915,8 +221430,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -217926,8 +221441,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -217937,8 +221452,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -217948,8 +221463,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -217959,8 +221474,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -217970,8 +221485,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -217981,8 +221496,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -217992,8 +221507,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218003,8 +221518,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218014,8 +221529,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218025,8 +221540,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218036,8 +221551,8 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218046,9 +221561,9 @@ "id": 15657, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218057,9 +221572,9 @@ "id": 15658, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218068,9 +221583,9 @@ "id": 15659, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218079,9 +221594,9 @@ "id": 15660, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218090,9 +221605,9 @@ "id": 15661, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218101,9 +221616,9 @@ "id": 15662, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218112,9 +221627,9 @@ "id": 15663, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218123,9 +221638,9 @@ "id": 15664, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218134,9 +221649,9 @@ "id": 15665, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218145,9 +221660,9 @@ "id": 15666, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218156,9 +221671,9 @@ "id": 15667, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218167,9 +221682,9 @@ "id": 15668, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218178,9 +221693,9 @@ "id": 15669, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218189,9 +221704,9 @@ "id": 15670, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218200,9 +221715,9 @@ "id": 15671, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218211,9 +221726,9 @@ "id": 15672, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218222,9 +221737,9 @@ "id": 15673, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218233,9 +221748,9 @@ "id": 15674, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218245,8 +221760,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218256,8 +221771,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218267,8 +221782,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218278,8 +221793,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218289,8 +221804,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218300,8 +221815,8 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218311,8 +221826,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218322,8 +221837,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218333,8 +221848,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218344,8 +221859,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218355,8 +221870,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218366,8 +221881,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218377,8 +221892,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218388,8 +221903,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218399,8 +221914,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218410,8 +221925,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218421,8 +221936,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218432,8 +221947,8 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218442,9 +221957,9 @@ "id": 15693, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218453,9 +221968,9 @@ "id": 15694, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218464,9 +221979,9 @@ "id": 15695, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218475,9 +221990,9 @@ "id": 15696, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218486,9 +222001,9 @@ "id": 15697, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218497,9 +222012,9 @@ "id": 15698, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218508,9 +222023,9 @@ "id": 15699, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218519,9 +222034,9 @@ "id": 15700, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218530,9 +222045,9 @@ "id": 15701, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218541,9 +222056,9 @@ "id": 15702, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218552,9 +222067,9 @@ "id": 15703, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218563,9 +222078,9 @@ "id": 15704, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218574,9 +222089,9 @@ "id": 15705, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218585,9 +222100,9 @@ "id": 15706, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218596,9 +222111,9 @@ "id": 15707, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218607,9 +222122,9 @@ "id": 15708, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218618,9 +222133,9 @@ "id": 15709, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218629,9 +222144,9 @@ "id": 15710, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218641,8 +222156,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218652,8 +222167,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218663,8 +222178,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218674,8 +222189,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -218685,8 +222200,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -218696,8 +222211,8 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -218707,8 +222222,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -218718,8 +222233,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -218729,8 +222244,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -218740,8 +222255,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -218751,8 +222266,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -218762,8 +222277,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -218773,8 +222288,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -218784,8 +222299,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -218795,8 +222310,8 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -218806,14 +222321,212 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15727, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15728, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15729, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15730, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15731, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15732, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15733, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15734, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15735, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15736, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15737, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15738, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15739, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15740, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15741, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15742, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15743, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15744, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15745, "properties": { "east": "none", "north": "tall", @@ -218824,7 +222537,7 @@ } }, { - "id": 15728, + "id": 15746, "properties": { "east": "none", "north": "tall", @@ -218834,211 +222547,13 @@ "west": "tall" } }, - { - "id": 15729, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15730, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15731, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15732, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15733, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15734, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15735, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15736, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15737, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15738, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15739, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15740, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15741, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15742, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15743, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15744, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15745, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15746, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15747, "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219048,8 +222563,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219059,8 +222574,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219070,8 +222585,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219081,8 +222596,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219092,8 +222607,8 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219103,8 +222618,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219114,8 +222629,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219125,8 +222640,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219136,8 +222651,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219147,8 +222662,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219158,8 +222673,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219169,8 +222684,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219180,8 +222695,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219191,8 +222706,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219202,8 +222717,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219213,8 +222728,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219224,8 +222739,8 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219234,9 +222749,9 @@ "id": 15765, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219245,9 +222760,9 @@ "id": 15766, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219256,9 +222771,9 @@ "id": 15767, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219267,9 +222782,9 @@ "id": 15768, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219278,9 +222793,9 @@ "id": 15769, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219289,9 +222804,9 @@ "id": 15770, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219300,9 +222815,9 @@ "id": 15771, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219311,9 +222826,9 @@ "id": 15772, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219322,9 +222837,9 @@ "id": 15773, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219333,9 +222848,9 @@ "id": 15774, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219344,9 +222859,9 @@ "id": 15775, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219355,9 +222870,9 @@ "id": 15776, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219366,9 +222881,9 @@ "id": 15777, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219377,9 +222892,9 @@ "id": 15778, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219388,9 +222903,9 @@ "id": 15779, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219399,9 +222914,9 @@ "id": 15780, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219410,9 +222925,9 @@ "id": 15781, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219421,9 +222936,9 @@ "id": 15782, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219433,8 +222948,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219444,8 +222959,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219455,8 +222970,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219466,8 +222981,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219477,8 +222992,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219488,8 +223003,8 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219499,8 +223014,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219510,8 +223025,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219521,8 +223036,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219532,8 +223047,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219543,8 +223058,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219554,8 +223069,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219565,8 +223080,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219576,8 +223091,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219587,8 +223102,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219598,8 +223113,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219609,8 +223124,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219620,8 +223135,8 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219630,9 +223145,9 @@ "id": 15801, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219641,9 +223156,9 @@ "id": 15802, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219652,9 +223167,9 @@ "id": 15803, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219663,9 +223178,9 @@ "id": 15804, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219674,9 +223189,9 @@ "id": 15805, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219685,9 +223200,9 @@ "id": 15806, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219696,9 +223211,9 @@ "id": 15807, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219707,9 +223222,9 @@ "id": 15808, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219718,9 +223233,9 @@ "id": 15809, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219729,9 +223244,9 @@ "id": 15810, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219740,9 +223255,9 @@ "id": 15811, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219751,9 +223266,9 @@ "id": 15812, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219762,9 +223277,9 @@ "id": 15813, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219773,9 +223288,9 @@ "id": 15814, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219784,9 +223299,9 @@ "id": 15815, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219795,9 +223310,9 @@ "id": 15816, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219806,9 +223321,9 @@ "id": 15817, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219817,9 +223332,9 @@ "id": 15818, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219829,8 +223344,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219840,8 +223355,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219851,8 +223366,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219862,8 +223377,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -219873,8 +223388,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -219884,8 +223399,8 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -219895,8 +223410,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -219906,8 +223421,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -219917,8 +223432,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -219928,8 +223443,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -219939,8 +223454,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -219950,8 +223465,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -219961,8 +223476,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -219972,8 +223487,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -219983,8 +223498,8 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -219994,14 +223509,212 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15835, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15836, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15837, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15838, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15839, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15840, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15841, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15842, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15843, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15844, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15845, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15846, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15847, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15848, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15849, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15850, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15851, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15852, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15853, "properties": { "east": "low", "north": "tall", @@ -220012,7 +223725,7 @@ } }, { - "id": 15836, + "id": 15854, "properties": { "east": "low", "north": "tall", @@ -220022,211 +223735,13 @@ "west": "tall" } }, - { - "id": 15837, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15838, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15839, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15840, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15841, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15842, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15843, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15844, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15845, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15846, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15847, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15848, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15849, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15850, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15851, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15852, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15853, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15854, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15855, "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -220236,8 +223751,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -220247,8 +223762,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -220258,8 +223773,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -220269,8 +223784,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -220280,8 +223795,8 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -220291,8 +223806,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -220302,8 +223817,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -220313,8 +223828,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -220324,8 +223839,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -220335,8 +223850,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -220346,8 +223861,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -220357,8 +223872,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -220368,8 +223883,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -220379,8 +223894,8 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -220390,14 +223905,212 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15871, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15872, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15873, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15874, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15875, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15876, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15877, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15878, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15879, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15880, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15881, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15882, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15883, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15884, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15885, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15886, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15887, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15888, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15889, "properties": { "east": "tall", "north": "none", @@ -220408,7 +224121,7 @@ } }, { - "id": 15872, + "id": 15890, "properties": { "east": "tall", "north": "none", @@ -220418,211 +224131,13 @@ "west": "tall" } }, - { - "id": 15873, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15874, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15875, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15876, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15877, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15878, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15879, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15880, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15881, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15882, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15883, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15884, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15885, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15886, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15887, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15888, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15889, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15890, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15891, "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -220632,8 +224147,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -220643,8 +224158,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -220654,8 +224169,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -220665,8 +224180,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -220676,8 +224191,8 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -220687,8 +224202,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -220698,8 +224213,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -220709,8 +224224,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -220720,8 +224235,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -220731,8 +224246,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -220742,8 +224257,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } @@ -220753,8 +224268,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "none" } @@ -220764,8 +224279,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "low" } @@ -220775,8 +224290,8 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -220786,14 +224301,212 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", + "south": "low", + "up": "true", "waterlogged": "false", "west": "none" } }, { "id": 15907, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15908, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15909, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15910, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15911, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15912, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15913, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15914, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15915, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15916, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15917, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15918, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15919, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15920, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15921, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15922, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15923, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15924, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15925, "properties": { "east": "tall", "north": "low", @@ -220804,7 +224517,7 @@ } }, { - "id": 15908, + "id": 15926, "properties": { "east": "tall", "north": "low", @@ -220814,211 +224527,13 @@ "west": "tall" } }, - { - "id": 15909, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15910, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15911, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15912, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15913, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15914, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15915, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15916, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15917, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15918, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15919, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15920, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15921, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15922, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15923, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15924, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15925, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15926, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, { "id": 15927, "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "none" } @@ -221028,8 +224543,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "low" } @@ -221039,8 +224554,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "true", "west": "tall" } @@ -221050,8 +224565,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "none" } @@ -221061,8 +224576,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "low" } @@ -221072,8 +224587,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", + "south": "none", + "up": "true", "waterlogged": "false", "west": "tall" } @@ -221083,8 +224598,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "none" } @@ -221094,8 +224609,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "low" } @@ -221105,8 +224620,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "true", "west": "tall" } @@ -221116,8 +224631,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "none" } @@ -221127,8 +224642,8 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "low" } @@ -221138,14 +224653,212 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", + "south": "none", + "up": "false", "waterlogged": "false", "west": "tall" } }, { "id": 15939, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15940, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15941, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15942, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15943, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15944, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15945, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15946, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15947, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15948, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15949, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15950, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15951, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15952, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15953, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15954, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15955, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15956, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15957, "properties": { "east": "tall", "north": "tall", @@ -221156,7 +224869,7 @@ } }, { - "id": 15940, + "id": 15958, "properties": { "east": "tall", "north": "tall", @@ -221167,7 +224880,7 @@ } }, { - "id": 15941, + "id": 15959, "properties": { "east": "tall", "north": "tall", @@ -221178,7 +224891,7 @@ } }, { - "id": 15942, + "id": 15960, "properties": { "east": "tall", "north": "tall", @@ -221189,7 +224902,7 @@ } }, { - "id": 15943, + "id": 15961, "properties": { "east": "tall", "north": "tall", @@ -221200,7 +224913,7 @@ } }, { - "id": 15944, + "id": 15962, "properties": { "east": "tall", "north": "tall", @@ -221216,7 +224929,7 @@ "states": [ { "default": true, - "id": 6534 + "id": 6538 } ] }, @@ -221239,43 +224952,11 @@ ] }, "states": [ - { - "id": 5744, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5745, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5746, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5747, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, { "id": 5748, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -221283,7 +224964,7 @@ "id": 5749, "properties": { "face": "floor", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -221291,7 +224972,7 @@ "id": 5750, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -221299,12 +224980,44 @@ "id": 5751, "properties": { "face": "floor", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 5752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5753, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5755, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5756, "properties": { "face": "wall", "facing": "north", @@ -221313,42 +225026,10 @@ }, { "default": true, - "id": 5753, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5754, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5755, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5756, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { "id": 5757, "properties": { "face": "wall", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -221356,7 +225037,7 @@ "id": 5758, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -221364,39 +225045,39 @@ "id": 5759, "properties": { "face": "wall", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 5760, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "true" } }, { "id": 5761, "properties": { - "face": "ceiling", - "facing": "north", + "face": "wall", + "facing": "west", "powered": "false" } }, { "id": 5762, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "true" } }, { "id": 5763, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "east", "powered": "false" } }, @@ -221404,7 +225085,7 @@ "id": 5764, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -221412,7 +225093,7 @@ "id": 5765, "properties": { "face": "ceiling", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -221420,12 +225101,44 @@ "id": 5766, "properties": { "face": "ceiling", - "facing": "east", + "facing": "south", "powered": "true" } }, { "id": 5767, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5769, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5771, "properties": { "face": "ceiling", "facing": "east", @@ -221443,14 +225156,14 @@ }, "states": [ { - "id": 5646, + "id": 5650, "properties": { "powered": "true" } }, { "default": true, - "id": 5647, + "id": 5651, "properties": { "powered": "false" } @@ -221471,21 +225184,21 @@ }, "states": [ { - "id": 11077, + "id": 11081, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11078, + "id": 11082, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11079, + "id": 11083, "properties": { "type": "bottom", "waterlogged": "true" @@ -221493,21 +225206,21 @@ }, { "default": true, - "id": 11080, + "id": 11084, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11081, + "id": 11085, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11082, + "id": 11086, "properties": { "type": "double", "waterlogged": "false" @@ -221541,7 +225254,7 @@ }, "states": [ { - "id": 13283, + "id": 13301, "properties": { "facing": "north", "half": "top", @@ -221550,7 +225263,7 @@ } }, { - "id": 13284, + "id": 13302, "properties": { "facing": "north", "half": "top", @@ -221559,7 +225272,7 @@ } }, { - "id": 13285, + "id": 13303, "properties": { "facing": "north", "half": "top", @@ -221568,7 +225281,7 @@ } }, { - "id": 13286, + "id": 13304, "properties": { "facing": "north", "half": "top", @@ -221577,7 +225290,7 @@ } }, { - "id": 13287, + "id": 13305, "properties": { "facing": "north", "half": "top", @@ -221586,7 +225299,7 @@ } }, { - "id": 13288, + "id": 13306, "properties": { "facing": "north", "half": "top", @@ -221595,7 +225308,7 @@ } }, { - "id": 13289, + "id": 13307, "properties": { "facing": "north", "half": "top", @@ -221604,7 +225317,7 @@ } }, { - "id": 13290, + "id": 13308, "properties": { "facing": "north", "half": "top", @@ -221613,7 +225326,7 @@ } }, { - "id": 13291, + "id": 13309, "properties": { "facing": "north", "half": "top", @@ -221622,7 +225335,7 @@ } }, { - "id": 13292, + "id": 13310, "properties": { "facing": "north", "half": "top", @@ -221631,7 +225344,7 @@ } }, { - "id": 13293, + "id": 13311, "properties": { "facing": "north", "half": "bottom", @@ -221641,250 +225354,250 @@ }, { "default": true, - "id": 13294, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13295, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13296, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13297, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13298, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13299, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13300, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13301, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13302, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13303, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13304, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13305, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13306, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13307, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13308, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13309, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13310, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13311, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 13312, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13313, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13314, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13315, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13316, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13317, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13318, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13319, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13320, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13321, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13322, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13323, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13324, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13325, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13326, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13327, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13328, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13329, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13330, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13331, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13332, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13333, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13334, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13335, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13336, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13337, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13339, "properties": { "facing": "south", "half": "bottom", @@ -221893,7 +225606,7 @@ } }, { - "id": 13322, + "id": 13340, "properties": { "facing": "south", "half": "bottom", @@ -221901,174 +225614,12 @@ "waterlogged": "false" } }, - { - "id": 13323, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13324, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13325, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13326, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13327, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13328, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13329, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13330, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13331, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13332, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13333, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13334, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13335, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13336, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13337, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13338, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13339, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13340, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 13341, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -222076,175 +225627,337 @@ "id": 13342, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 13343, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13344, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13345, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13346, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13347, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13348, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13349, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13350, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13351, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 13352, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 13353, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 13354, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 13355, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 13356, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 13357, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 13358, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 13359, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 13360, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 13361, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13362, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13363, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13364, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13365, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13366, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13367, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13368, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13369, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13370, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13371, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13372, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13373, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13374, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13379, "properties": { "facing": "east", "half": "bottom", @@ -222253,7 +225966,7 @@ } }, { - "id": 13362, + "id": 13380, "properties": { "facing": "east", "half": "bottom", @@ -222275,25 +225988,25 @@ "states": [ { "default": true, - "id": 18308, + "id": 18326, "properties": { "facing": "north" } }, { - "id": 18309, + "id": 18327, "properties": { "facing": "south" } }, { - "id": 18310, + "id": 18328, "properties": { "facing": "west" } }, { - "id": 18311, + "id": 18329, "properties": { "facing": "east" } @@ -222310,20 +226023,20 @@ }, "states": [ { - "id": 167, + "id": 171, "properties": { "axis": "x" } }, { "default": true, - "id": 168, + "id": 172, "properties": { "axis": "y" } }, { - "id": 169, + "id": 173, "properties": { "axis": "z" } @@ -222340,20 +226053,20 @@ }, "states": [ { - "id": 221, + "id": 225, "properties": { "axis": "x" } }, { "default": true, - "id": 222, + "id": 226, "properties": { "axis": "y" } }, { - "id": 223, + "id": 227, "properties": { "axis": "z" } @@ -222370,20 +226083,20 @@ }, "states": [ { - "id": 182, + "id": 186, "properties": { "axis": "x" } }, { "default": true, - "id": 183, + "id": 187, "properties": { "axis": "y" } }, { - "id": 184, + "id": 188, "properties": { "axis": "z" } @@ -222400,20 +226113,20 @@ }, "states": [ { - "id": 161, + "id": 165, "properties": { "axis": "x" } }, { "default": true, - "id": 162, + "id": 166, "properties": { "axis": "y" } }, { - "id": 163, + "id": 167, "properties": { "axis": "z" } @@ -222430,20 +226143,20 @@ }, "states": [ { - "id": 215, + "id": 219, "properties": { "axis": "x" } }, { "default": true, - "id": 216, + "id": 220, "properties": { "axis": "y" } }, { - "id": 217, + "id": 221, "properties": { "axis": "z" } @@ -222460,20 +226173,20 @@ }, "states": [ { - "id": 170, + "id": 174, "properties": { "axis": "x" } }, { "default": true, - "id": 171, + "id": 175, "properties": { "axis": "y" } }, { - "id": 172, + "id": 176, "properties": { "axis": "z" } @@ -222490,20 +226203,20 @@ }, "states": [ { - "id": 224, + "id": 228, "properties": { "axis": "x" } }, { "default": true, - "id": 225, + "id": 229, "properties": { "axis": "y" } }, { - "id": 226, + "id": 230, "properties": { "axis": "z" } @@ -222520,20 +226233,20 @@ }, "states": [ { - "id": 18446, + "id": 18464, "properties": { "axis": "x" } }, { "default": true, - "id": 18447, + "id": 18465, "properties": { "axis": "y" } }, { - "id": 18448, + "id": 18466, "properties": { "axis": "z" } @@ -222550,20 +226263,20 @@ }, "states": [ { - "id": 18440, + "id": 18458, "properties": { "axis": "x" } }, { "default": true, - "id": 18441, + "id": 18459, "properties": { "axis": "y" } }, { - "id": 18442, + "id": 18460, "properties": { "axis": "z" } @@ -222580,20 +226293,20 @@ }, "states": [ { - "id": 173, + "id": 177, "properties": { "axis": "x" } }, { "default": true, - "id": 174, + "id": 178, "properties": { "axis": "y" } }, { - "id": 175, + "id": 179, "properties": { "axis": "z" } @@ -222610,20 +226323,20 @@ }, "states": [ { - "id": 227, + "id": 231, "properties": { "axis": "x" } }, { "default": true, - "id": 228, + "id": 232, "properties": { "axis": "y" } }, { - "id": 229, + "id": 233, "properties": { "axis": "z" } @@ -222640,20 +226353,20 @@ }, "states": [ { - "id": 164, + "id": 168, "properties": { "axis": "x" } }, { "default": true, - "id": 165, + "id": 169, "properties": { "axis": "y" } }, { - "id": 166, + "id": 170, "properties": { "axis": "z" } @@ -222670,20 +226383,20 @@ }, "states": [ { - "id": 218, + "id": 222, "properties": { "axis": "x" } }, { "default": true, - "id": 219, + "id": 223, "properties": { "axis": "y" } }, { - "id": 220, + "id": 224, "properties": { "axis": "z" } @@ -222700,20 +226413,20 @@ }, "states": [ { - "id": 179, + "id": 183, "properties": { "axis": "x" } }, { "default": true, - "id": 180, + "id": 184, "properties": { "axis": "y" } }, { - "id": 181, + "id": 185, "properties": { "axis": "z" } @@ -222730,20 +226443,20 @@ }, "states": [ { - "id": 230, + "id": 234, "properties": { "axis": "x" } }, { "default": true, - "id": 231, + "id": 235, "properties": { "axis": "y" } }, { - "id": 232, + "id": 236, "properties": { "axis": "z" } @@ -222760,20 +226473,20 @@ }, "states": [ { - "id": 176, + "id": 180, "properties": { "axis": "x" } }, { "default": true, - "id": 177, + "id": 181, "properties": { "axis": "y" } }, { - "id": 178, + "id": 182, "properties": { "axis": "z" } @@ -222790,20 +226503,20 @@ }, "states": [ { - "id": 209, + "id": 213, "properties": { "axis": "x" } }, { "default": true, - "id": 210, + "id": 214, "properties": { "axis": "y" } }, { - "id": 211, + "id": 215, "properties": { "axis": "z" } @@ -222820,20 +226533,20 @@ }, "states": [ { - "id": 158, + "id": 162, "properties": { "axis": "x" } }, { "default": true, - "id": 159, + "id": 163, "properties": { "axis": "y" } }, { - "id": 160, + "id": 164, "properties": { "axis": "z" } @@ -222850,20 +226563,20 @@ }, "states": [ { - "id": 212, + "id": 216, "properties": { "axis": "x" } }, { "default": true, - "id": 213, + "id": 217, "properties": { "axis": "y" } }, { - "id": 214, + "id": 218, "properties": { "axis": "z" } @@ -222880,20 +226593,20 @@ }, "states": [ { - "id": 18429, + "id": 18447, "properties": { "axis": "x" } }, { "default": true, - "id": 18430, + "id": 18448, "properties": { "axis": "y" } }, { - "id": 18431, + "id": 18449, "properties": { "axis": "z" } @@ -222910,20 +226623,20 @@ }, "states": [ { - "id": 18423, + "id": 18441, "properties": { "axis": "x" } }, { "default": true, - "id": 18424, + "id": 18442, "properties": { "axis": "y" } }, { - "id": 18425, + "id": 18443, "properties": { "axis": "z" } @@ -222941,26 +226654,26 @@ }, "states": [ { - "id": 19197, + "id": 19215, "properties": { "mode": "save" } }, { "default": true, - "id": 19198, + "id": 19216, "properties": { "mode": "load" } }, { - "id": 19199, + "id": 19217, "properties": { "mode": "corner" } }, { - "id": 19200, + "id": 19218, "properties": { "mode": "data" } @@ -222971,7 +226684,7 @@ "states": [ { "default": true, - "id": 12393 + "id": 12408 } ] }, @@ -222999,97 +226712,97 @@ "states": [ { "default": true, - "id": 5795, + "id": 5799, "properties": { "age": "0" } }, { - "id": 5796, + "id": 5800, "properties": { "age": "1" } }, { - "id": 5797, + "id": 5801, "properties": { "age": "2" } }, { - "id": 5798, + "id": 5802, "properties": { "age": "3" } }, { - "id": 5799, + "id": 5803, "properties": { "age": "4" } }, { - "id": 5800, + "id": 5804, "properties": { "age": "5" } }, { - "id": 5801, + "id": 5805, "properties": { "age": "6" } }, { - "id": 5802, + "id": 5806, "properties": { "age": "7" } }, { - "id": 5803, + "id": 5807, "properties": { "age": "8" } }, { - "id": 5804, + "id": 5808, "properties": { "age": "9" } }, { - "id": 5805, + "id": 5809, "properties": { "age": "10" } }, { - "id": 5806, + "id": 5810, "properties": { "age": "11" } }, { - "id": 5807, + "id": 5811, "properties": { "age": "12" } }, { - "id": 5808, + "id": 5812, "properties": { "age": "13" } }, { - "id": 5809, + "id": 5813, "properties": { "age": "14" } }, { - "id": 5810, + "id": 5814, "properties": { "age": "15" } @@ -223105,20 +226818,57 @@ }, "states": [ { - "id": 10602, + "id": 10606, "properties": { "half": "upper" } }, { "default": true, - "id": 10603, + "id": 10607, "properties": { "half": "lower" } } ] }, + "minecraft:suspicious_gravel": { + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 119, + "properties": { + "dusted": "0" + } + }, + { + "id": 120, + "properties": { + "dusted": "1" + } + }, + { + "id": 121, + "properties": { + "dusted": "2" + } + }, + { + "id": 122, + "properties": { + "dusted": "3" + } + } + ] + }, "minecraft:suspicious_sand": { "properties": { "dusted": [ @@ -223168,25 +226918,25 @@ "states": [ { "default": true, - "id": 18416, + "id": 18434, "properties": { "age": "0" } }, { - "id": 18417, + "id": 18435, "properties": { "age": "1" } }, { - "id": 18418, + "id": 18436, "properties": { "age": "2" } }, { - "id": 18419, + "id": 18437, "properties": { "age": "3" } @@ -223202,14 +226952,14 @@ }, "states": [ { - "id": 10610, + "id": 10614, "properties": { "half": "upper" } }, { "default": true, - "id": 10611, + "id": 10615, "properties": { "half": "lower" } @@ -223225,14 +226975,14 @@ }, "states": [ { - "id": 2005, + "id": 2009, "properties": { "half": "upper" } }, { "default": true, - "id": 2006, + "id": 2010, "properties": { "half": "lower" } @@ -223263,97 +227013,97 @@ "states": [ { "default": true, - "id": 19222, + "id": 19240, "properties": { "power": "0" } }, { - "id": 19223, + "id": 19241, "properties": { "power": "1" } }, { - "id": 19224, + "id": 19242, "properties": { "power": "2" } }, { - "id": 19225, + "id": 19243, "properties": { "power": "3" } }, { - "id": 19226, + "id": 19244, "properties": { "power": "4" } }, { - "id": 19227, + "id": 19245, "properties": { "power": "5" } }, { - "id": 19228, + "id": 19246, "properties": { "power": "6" } }, { - "id": 19229, + "id": 19247, "properties": { "power": "7" } }, { - "id": 19230, + "id": 19248, "properties": { "power": "8" } }, { - "id": 19231, + "id": 19249, "properties": { "power": "9" } }, { - "id": 19232, + "id": 19250, "properties": { "power": "10" } }, { - "id": 19233, + "id": 19251, "properties": { "power": "11" } }, { - "id": 19234, + "id": 19252, "properties": { "power": "12" } }, { - "id": 19235, + "id": 19253, "properties": { "power": "13" } }, { - "id": 19236, + "id": 19254, "properties": { "power": "14" } }, { - "id": 19237, + "id": 19255, "properties": { "power": "15" } @@ -223364,7 +227114,7 @@ "states": [ { "default": true, - "id": 10599 + "id": 10603 } ] }, @@ -223372,7 +227122,7 @@ "states": [ { "default": true, - "id": 20924 + "id": 20942 } ] }, @@ -223385,14 +227135,14 @@ }, "states": [ { - "id": 2090, + "id": 2094, "properties": { "unstable": "true" } }, { "default": true, - "id": 2091, + "id": 2095, "properties": { "unstable": "false" } @@ -223403,7 +227153,7 @@ "states": [ { "default": true, - "id": 2351 + "id": 2355 } ] }, @@ -223411,7 +227161,7 @@ "states": [ { "default": true, - "id": 2072 + "id": 2076 } ] }, @@ -223419,29 +227169,22 @@ "properties": { "age": [ "0", - "1", - "2" + "1" ] }, "states": [ { "default": true, - "id": 12350, + "id": 12354, "properties": { "age": "0" } }, { - "id": 12351, + "id": 12355, "properties": { "age": "1" } - }, - { - "id": 12352, - "properties": { - "age": "2" - } } ] }, @@ -223465,7 +227208,7 @@ }, "states": [ { - "id": 8975, + "id": 8979, "properties": { "type": "single", "facing": "north", @@ -223474,41 +227217,9 @@ }, { "default": true, - "id": 8976, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 8977, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 8978, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 8979, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { "id": 8980, "properties": { - "type": "right", + "type": "single", "facing": "north", "waterlogged": "false" } @@ -223516,39 +227227,39 @@ { "id": 8981, "properties": { - "type": "single", - "facing": "south", + "type": "left", + "facing": "north", "waterlogged": "true" } }, { "id": 8982, "properties": { - "type": "single", - "facing": "south", + "type": "left", + "facing": "north", "waterlogged": "false" } }, { "id": 8983, "properties": { - "type": "left", - "facing": "south", + "type": "right", + "facing": "north", "waterlogged": "true" } }, { "id": 8984, "properties": { - "type": "left", - "facing": "south", + "type": "right", + "facing": "north", "waterlogged": "false" } }, { "id": 8985, "properties": { - "type": "right", + "type": "single", "facing": "south", "waterlogged": "true" } @@ -223556,7 +227267,7 @@ { "id": 8986, "properties": { - "type": "right", + "type": "single", "facing": "south", "waterlogged": "false" } @@ -223564,39 +227275,39 @@ { "id": 8987, "properties": { - "type": "single", - "facing": "west", + "type": "left", + "facing": "south", "waterlogged": "true" } }, { "id": 8988, "properties": { - "type": "single", - "facing": "west", + "type": "left", + "facing": "south", "waterlogged": "false" } }, { "id": 8989, "properties": { - "type": "left", - "facing": "west", + "type": "right", + "facing": "south", "waterlogged": "true" } }, { "id": 8990, "properties": { - "type": "left", - "facing": "west", + "type": "right", + "facing": "south", "waterlogged": "false" } }, { "id": 8991, "properties": { - "type": "right", + "type": "single", "facing": "west", "waterlogged": "true" } @@ -223604,7 +227315,7 @@ { "id": 8992, "properties": { - "type": "right", + "type": "single", "facing": "west", "waterlogged": "false" } @@ -223612,13 +227323,45 @@ { "id": 8993, "properties": { - "type": "single", - "facing": "east", + "type": "left", + "facing": "west", "waterlogged": "true" } }, { "id": 8994, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 8995, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 8996, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 8997, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 8998, "properties": { "type": "single", "facing": "east", @@ -223626,7 +227369,7 @@ } }, { - "id": 8995, + "id": 8999, "properties": { "type": "left", "facing": "east", @@ -223634,7 +227377,7 @@ } }, { - "id": 8996, + "id": 9000, "properties": { "type": "left", "facing": "east", @@ -223642,7 +227385,7 @@ } }, { - "id": 8997, + "id": 9001, "properties": { "type": "right", "facing": "east", @@ -223650,7 +227393,7 @@ } }, { - "id": 8998, + "id": 9002, "properties": { "type": "right", "facing": "east", @@ -223691,54 +227434,6 @@ ] }, "states": [ - { - "id": 7533, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7534, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7535, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7536, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, { "id": 7537, "properties": { @@ -223746,7 +227441,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -223758,7 +227453,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -223770,7 +227465,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -223782,7 +227477,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -223793,8 +227488,8 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -223805,8 +227500,8 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -223817,8 +227512,8 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -223829,8 +227524,8 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -223842,7 +227537,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -223854,7 +227549,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -223866,7 +227561,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -223878,7 +227573,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -223888,9 +227583,9 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -223900,9 +227595,9 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -223912,9 +227607,9 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -223924,9 +227619,9 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -223938,7 +227633,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -223950,7 +227645,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -223962,7 +227657,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -223974,7 +227669,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -223985,8 +227680,8 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -223997,8 +227692,8 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224009,8 +227704,8 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224021,8 +227716,8 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224034,7 +227729,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224046,7 +227741,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224058,7 +227753,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224070,7 +227765,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224079,10 +227774,10 @@ "id": 7565, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -224091,10 +227786,10 @@ "id": 7566, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -224103,10 +227798,10 @@ "id": 7567, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -224115,10 +227810,10 @@ "id": 7568, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -224130,7 +227825,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224142,7 +227837,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224154,7 +227849,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224166,7 +227861,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224177,8 +227872,8 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -224189,8 +227884,8 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224201,8 +227896,8 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224213,8 +227908,8 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224226,7 +227921,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224238,7 +227933,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224250,7 +227945,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224262,7 +227957,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224272,9 +227967,9 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -224284,9 +227979,9 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -224296,9 +227991,9 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -224308,9 +228003,9 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -224322,7 +228017,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224334,7 +228029,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224346,7 +228041,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224358,7 +228053,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224369,8 +228064,8 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -224381,8 +228076,8 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224393,8 +228088,8 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224405,8 +228100,8 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224418,7 +228113,7 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224430,7 +228125,7 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224442,7 +228137,7 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224454,7 +228149,7 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224462,11 +228157,11 @@ { "id": 7597, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -224474,11 +228169,11 @@ { "id": 7598, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -224486,11 +228181,11 @@ { "id": 7599, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -224498,11 +228193,11 @@ { "id": 7600, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -224514,7 +228209,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224526,7 +228221,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224538,7 +228233,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224550,7 +228245,7 @@ "disarmed": "true", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224561,8 +228256,8 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -224573,8 +228268,8 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224585,8 +228280,8 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224597,8 +228292,8 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224610,7 +228305,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224622,7 +228317,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224634,7 +228329,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224646,7 +228341,7 @@ "disarmed": "true", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224656,9 +228351,9 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -224668,9 +228363,9 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -224680,9 +228375,9 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -224692,9 +228387,9 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -224706,7 +228401,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224718,7 +228413,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224730,7 +228425,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224742,7 +228437,7 @@ "disarmed": "true", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224753,8 +228448,8 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -224765,8 +228460,8 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224777,8 +228472,8 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224789,8 +228484,8 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224802,7 +228497,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224814,7 +228509,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224826,7 +228521,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224838,7 +228533,7 @@ "disarmed": "true", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224847,10 +228542,10 @@ "id": 7629, "properties": { "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -224859,10 +228554,10 @@ "id": 7630, "properties": { "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -224871,10 +228566,10 @@ "id": 7631, "properties": { "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -224883,10 +228578,10 @@ "id": 7632, "properties": { "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -224898,7 +228593,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -224910,7 +228605,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -224922,7 +228617,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -224934,7 +228629,7 @@ "disarmed": "false", "east": "true", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -224945,8 +228640,8 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -224957,8 +228652,8 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -224969,8 +228664,8 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -224981,8 +228676,8 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -224994,7 +228689,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -225006,7 +228701,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -225018,7 +228713,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -225030,7 +228725,7 @@ "disarmed": "false", "east": "true", "north": "false", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -225040,9 +228735,9 @@ "properties": { "attached": "false", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "true" } @@ -225052,9 +228747,9 @@ "properties": { "attached": "false", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "true", "west": "false" } @@ -225064,9 +228759,9 @@ "properties": { "attached": "false", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "true" } @@ -225076,9 +228771,9 @@ "properties": { "attached": "false", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", + "east": "true", + "north": "false", + "powered": "false", "south": "false", "west": "false" } @@ -225090,7 +228785,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -225102,7 +228797,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } @@ -225114,7 +228809,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "true" } @@ -225126,7 +228821,7 @@ "disarmed": "false", "east": "false", "north": "true", - "powered": "false", + "powered": "true", "south": "false", "west": "false" } @@ -225137,8 +228832,8 @@ "attached": "false", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "true" } @@ -225149,8 +228844,8 @@ "attached": "false", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "true", "west": "false" } @@ -225161,8 +228856,8 @@ "attached": "false", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "true" } @@ -225173,8 +228868,8 @@ "attached": "false", "disarmed": "false", "east": "false", - "north": "false", - "powered": "true", + "north": "true", + "powered": "false", "south": "false", "west": "false" } @@ -225186,7 +228881,7 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "true" } @@ -225198,13 +228893,61 @@ "disarmed": "false", "east": "false", "north": "false", - "powered": "false", + "powered": "true", "south": "true", "west": "false" } }, { "id": 7659, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7660, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7661, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7662, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7663, "properties": { "attached": "false", "disarmed": "false", @@ -225217,7 +228960,7 @@ }, { "default": true, - "id": 7660, + "id": 7664, "properties": { "attached": "false", "disarmed": "false", @@ -225248,43 +228991,11 @@ ] }, "states": [ - { - "id": 7517, - "properties": { - "attached": "true", - "facing": "north", - "powered": "true" - } - }, - { - "id": 7518, - "properties": { - "attached": "true", - "facing": "north", - "powered": "false" - } - }, - { - "id": 7519, - "properties": { - "attached": "true", - "facing": "south", - "powered": "true" - } - }, - { - "id": 7520, - "properties": { - "attached": "true", - "facing": "south", - "powered": "false" - } - }, { "id": 7521, "properties": { "attached": "true", - "facing": "west", + "facing": "north", "powered": "true" } }, @@ -225292,7 +229003,7 @@ "id": 7522, "properties": { "attached": "true", - "facing": "west", + "facing": "north", "powered": "false" } }, @@ -225300,7 +229011,7 @@ "id": 7523, "properties": { "attached": "true", - "facing": "east", + "facing": "south", "powered": "true" } }, @@ -225308,12 +229019,44 @@ "id": 7524, "properties": { "attached": "true", - "facing": "east", + "facing": "south", "powered": "false" } }, { "id": 7525, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7526, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7527, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7528, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7529, "properties": { "attached": "false", "facing": "north", @@ -225322,47 +229065,47 @@ }, { "default": true, - "id": 7526, + "id": 7530, "properties": { "attached": "false", "facing": "north", "powered": "false" } }, - { - "id": 7527, - "properties": { - "attached": "false", - "facing": "south", - "powered": "true" - } - }, - { - "id": 7528, - "properties": { - "attached": "false", - "facing": "south", - "powered": "false" - } - }, - { - "id": 7529, - "properties": { - "attached": "false", - "facing": "west", - "powered": "true" - } - }, - { - "id": 7530, - "properties": { - "attached": "false", - "facing": "west", - "powered": "false" - } - }, { "id": 7531, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7532, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7533, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7534, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7535, "properties": { "attached": "false", "facing": "east", @@ -225370,7 +229113,7 @@ } }, { - "id": 7532, + "id": 7536, "properties": { "attached": "false", "facing": "east", @@ -225389,13 +229132,13 @@ "states": [ { "default": true, - "id": 12664, + "id": 12682, "properties": { "waterlogged": "true" } }, { - "id": 12665, + "id": 12683, "properties": { "waterlogged": "false" } @@ -225406,7 +229149,7 @@ "states": [ { "default": true, - "id": 12649 + "id": 12667 } ] }, @@ -225420,13 +229163,13 @@ "states": [ { "default": true, - "id": 12684, + "id": 12702, "properties": { "waterlogged": "true" } }, { - "id": 12685, + "id": 12703, "properties": { "waterlogged": "false" } @@ -225449,56 +229192,56 @@ "states": [ { "default": true, - "id": 12734, + "id": 12752, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 12735, + "id": 12753, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 12736, + "id": 12754, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 12737, + "id": 12755, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 12738, + "id": 12756, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 12739, + "id": 12757, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 12740, + "id": 12758, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 12741, + "id": 12759, "properties": { "facing": "east", "waterlogged": "false" @@ -225510,7 +229253,7 @@ "states": [ { "default": true, - "id": 20922 + "id": 20940 } ] }, @@ -225531,84 +229274,84 @@ "states": [ { "default": true, - "id": 12632, + "id": 12647, "properties": { "eggs": "1", "hatch": "0" } }, { - "id": 12633, + "id": 12648, "properties": { "eggs": "1", "hatch": "1" } }, { - "id": 12634, + "id": 12649, "properties": { "eggs": "1", "hatch": "2" } }, { - "id": 12635, + "id": 12650, "properties": { "eggs": "2", "hatch": "0" } }, { - "id": 12636, + "id": 12651, "properties": { "eggs": "2", "hatch": "1" } }, { - "id": 12637, + "id": 12652, "properties": { "eggs": "2", "hatch": "2" } }, { - "id": 12638, + "id": 12653, "properties": { "eggs": "3", "hatch": "0" } }, { - "id": 12639, + "id": 12654, "properties": { "eggs": "3", "hatch": "1" } }, { - "id": 12640, + "id": 12655, "properties": { "eggs": "3", "hatch": "2" } }, { - "id": 12641, + "id": 12656, "properties": { "eggs": "4", "hatch": "0" } }, { - "id": 12642, + "id": 12657, "properties": { "eggs": "4", "hatch": "1" } }, { - "id": 12643, + "id": 12658, "properties": { "eggs": "4", "hatch": "2" @@ -225650,157 +229393,157 @@ "states": [ { "default": true, - "id": 18479, + "id": 18497, "properties": { "age": "0" } }, { - "id": 18480, + "id": 18498, "properties": { "age": "1" } }, { - "id": 18481, + "id": 18499, "properties": { "age": "2" } }, { - "id": 18482, + "id": 18500, "properties": { "age": "3" } }, { - "id": 18483, + "id": 18501, "properties": { "age": "4" } }, { - "id": 18484, + "id": 18502, "properties": { "age": "5" } }, { - "id": 18485, + "id": 18503, "properties": { "age": "6" } }, { - "id": 18486, + "id": 18504, "properties": { "age": "7" } }, { - "id": 18487, + "id": 18505, "properties": { "age": "8" } }, { - "id": 18488, + "id": 18506, "properties": { "age": "9" } }, { - "id": 18489, + "id": 18507, "properties": { "age": "10" } }, { - "id": 18490, + "id": 18508, "properties": { "age": "11" } }, { - "id": 18491, + "id": 18509, "properties": { "age": "12" } }, { - "id": 18492, + "id": 18510, "properties": { "age": "13" } }, { - "id": 18493, + "id": 18511, "properties": { "age": "14" } }, { - "id": 18494, + "id": 18512, "properties": { "age": "15" } }, { - "id": 18495, + "id": 18513, "properties": { "age": "16" } }, { - "id": 18496, + "id": 18514, "properties": { "age": "17" } }, { - "id": 18497, + "id": 18515, "properties": { "age": "18" } }, { - "id": 18498, + "id": 18516, "properties": { "age": "19" } }, { - "id": 18499, + "id": 18517, "properties": { "age": "20" } }, { - "id": 18500, + "id": 18518, "properties": { "age": "21" } }, { - "id": 18501, + "id": 18519, "properties": { "age": "22" } }, { - "id": 18502, + "id": 18520, "properties": { "age": "23" } }, { - "id": 18503, + "id": 18521, "properties": { "age": "24" } }, { - "id": 18504, + "id": 18522, "properties": { "age": "25" } @@ -225811,7 +229554,7 @@ "states": [ { "default": true, - "id": 18505 + "id": 18523 } ] }, @@ -225825,20 +229568,20 @@ }, "states": [ { - "id": 23709, + "id": 24111, "properties": { "axis": "x" } }, { "default": true, - "id": 23710, + "id": 24112, "properties": { "axis": "y" } }, { - "id": 23711, + "id": 24113, "properties": { "axis": "z" } @@ -225869,52 +229612,12 @@ ] }, "states": [ - { - "id": 6833, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6834, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6835, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6836, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, { "id": 6837, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -225924,7 +229627,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -225934,7 +229637,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -225944,7 +229647,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -225953,8 +229656,8 @@ "id": 6841, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -225963,8 +229666,8 @@ "id": 6842, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -225973,8 +229676,8 @@ "id": 6843, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -225983,8 +229686,8 @@ "id": 6844, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -225994,7 +229697,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -226004,7 +229707,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -226014,7 +229717,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -226024,7 +229727,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -226032,9 +229735,9 @@ { "id": 6849, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "true" } @@ -226042,9 +229745,9 @@ { "id": 6850, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", "west": "false" } @@ -226052,9 +229755,9 @@ { "id": 6851, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "true" } @@ -226062,9 +229765,9 @@ { "id": 6852, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "west": "false" } @@ -226074,7 +229777,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -226084,7 +229787,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", "west": "false" } @@ -226094,7 +229797,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "true" } @@ -226104,7 +229807,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", "west": "false" } @@ -226113,8 +229816,8 @@ "id": 6857, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "true" } @@ -226123,8 +229826,8 @@ "id": 6858, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", "west": "false" } @@ -226133,8 +229836,8 @@ "id": 6859, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "true" } @@ -226143,8 +229846,8 @@ "id": 6860, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", "west": "false" } @@ -226154,7 +229857,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "true" } @@ -226164,13 +229867,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", "west": "false" } }, { "id": 6863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6864, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6867, "properties": { "east": "false", "north": "false", @@ -226181,7 +229924,7 @@ }, { "default": true, - "id": 6864, + "id": 6868, "properties": { "east": "false", "north": "false", @@ -226196,7 +229939,7 @@ "states": [ { "default": true, - "id": 12799 + "id": 12817 } ] }, @@ -226212,25 +229955,25 @@ "states": [ { "default": true, - "id": 2352, + "id": 2356, "properties": { "facing": "north" } }, { - "id": 2353, + "id": 2357, "properties": { "facing": "south" } }, { - "id": 2354, + "id": 2358, "properties": { "facing": "west" } }, { - "id": 2355, + "id": 2359, "properties": { "facing": "east" } @@ -226257,7 +230000,7 @@ }, "states": [ { - "id": 18965, + "id": 18983, "properties": { "face": "floor", "facing": "north", @@ -226265,7 +230008,7 @@ } }, { - "id": 18966, + "id": 18984, "properties": { "face": "floor", "facing": "north", @@ -226273,7 +230016,7 @@ } }, { - "id": 18967, + "id": 18985, "properties": { "face": "floor", "facing": "south", @@ -226281,7 +230024,7 @@ } }, { - "id": 18968, + "id": 18986, "properties": { "face": "floor", "facing": "south", @@ -226289,7 +230032,7 @@ } }, { - "id": 18969, + "id": 18987, "properties": { "face": "floor", "facing": "west", @@ -226297,7 +230040,7 @@ } }, { - "id": 18970, + "id": 18988, "properties": { "face": "floor", "facing": "west", @@ -226305,7 +230048,7 @@ } }, { - "id": 18971, + "id": 18989, "properties": { "face": "floor", "facing": "east", @@ -226313,7 +230056,7 @@ } }, { - "id": 18972, + "id": 18990, "properties": { "face": "floor", "facing": "east", @@ -226321,7 +230064,7 @@ } }, { - "id": 18973, + "id": 18991, "properties": { "face": "wall", "facing": "north", @@ -226330,7 +230073,7 @@ }, { "default": true, - "id": 18974, + "id": 18992, "properties": { "face": "wall", "facing": "north", @@ -226338,7 +230081,7 @@ } }, { - "id": 18975, + "id": 18993, "properties": { "face": "wall", "facing": "south", @@ -226346,7 +230089,7 @@ } }, { - "id": 18976, + "id": 18994, "properties": { "face": "wall", "facing": "south", @@ -226354,7 +230097,7 @@ } }, { - "id": 18977, + "id": 18995, "properties": { "face": "wall", "facing": "west", @@ -226362,7 +230105,7 @@ } }, { - "id": 18978, + "id": 18996, "properties": { "face": "wall", "facing": "west", @@ -226370,7 +230113,7 @@ } }, { - "id": 18979, + "id": 18997, "properties": { "face": "wall", "facing": "east", @@ -226378,7 +230121,7 @@ } }, { - "id": 18980, + "id": 18998, "properties": { "face": "wall", "facing": "east", @@ -226386,7 +230129,7 @@ } }, { - "id": 18981, + "id": 18999, "properties": { "face": "ceiling", "facing": "north", @@ -226394,7 +230137,7 @@ } }, { - "id": 18982, + "id": 19000, "properties": { "face": "ceiling", "facing": "north", @@ -226402,7 +230145,7 @@ } }, { - "id": 18983, + "id": 19001, "properties": { "face": "ceiling", "facing": "south", @@ -226410,7 +230153,7 @@ } }, { - "id": 18984, + "id": 19002, "properties": { "face": "ceiling", "facing": "south", @@ -226418,7 +230161,7 @@ } }, { - "id": 18985, + "id": 19003, "properties": { "face": "ceiling", "facing": "west", @@ -226426,7 +230169,7 @@ } }, { - "id": 18986, + "id": 19004, "properties": { "face": "ceiling", "facing": "west", @@ -226434,7 +230177,7 @@ } }, { - "id": 18987, + "id": 19005, "properties": { "face": "ceiling", "facing": "east", @@ -226442,7 +230185,7 @@ } }, { - "id": 18988, + "id": 19006, "properties": { "face": "ceiling", "facing": "east", @@ -226478,7 +230221,7 @@ }, "states": [ { - "id": 19053, + "id": 19071, "properties": { "facing": "north", "half": "upper", @@ -226488,7 +230231,7 @@ } }, { - "id": 19054, + "id": 19072, "properties": { "facing": "north", "half": "upper", @@ -226498,7 +230241,7 @@ } }, { - "id": 19055, + "id": 19073, "properties": { "facing": "north", "half": "upper", @@ -226508,7 +230251,7 @@ } }, { - "id": 19056, + "id": 19074, "properties": { "facing": "north", "half": "upper", @@ -226518,7 +230261,7 @@ } }, { - "id": 19057, + "id": 19075, "properties": { "facing": "north", "half": "upper", @@ -226528,7 +230271,7 @@ } }, { - "id": 19058, + "id": 19076, "properties": { "facing": "north", "half": "upper", @@ -226538,7 +230281,7 @@ } }, { - "id": 19059, + "id": 19077, "properties": { "facing": "north", "half": "upper", @@ -226548,7 +230291,7 @@ } }, { - "id": 19060, + "id": 19078, "properties": { "facing": "north", "half": "upper", @@ -226558,7 +230301,7 @@ } }, { - "id": 19061, + "id": 19079, "properties": { "facing": "north", "half": "lower", @@ -226568,7 +230311,7 @@ } }, { - "id": 19062, + "id": 19080, "properties": { "facing": "north", "half": "lower", @@ -226578,7 +230321,7 @@ } }, { - "id": 19063, + "id": 19081, "properties": { "facing": "north", "half": "lower", @@ -226589,207 +230332,207 @@ }, { "default": true, - "id": 19064, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19065, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19066, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19067, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19068, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19069, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19070, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19071, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19072, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19073, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19074, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19075, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19076, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19077, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19078, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19079, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19080, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19081, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 19082, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "right", - "open": "true", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 19083, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19084, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19085, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19086, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19087, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19088, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19089, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19090, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19091, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19092, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19093, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19094, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19095, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19096, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19097, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19098, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19099, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19100, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19101, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19102, "properties": { "facing": "south", "half": "lower", @@ -226798,238 +230541,238 @@ "powered": "false" } }, - { - "id": 19085, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19086, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19087, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19088, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19089, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19090, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19091, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19092, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19093, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19094, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19095, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19096, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19097, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19098, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19099, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19100, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19101, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19102, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 19103, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19104, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 19105, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "right", - "open": "true", + "hinge": "left", + "open": "false", "powered": "true" } }, { "id": 19106, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "right", - "open": "true", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 19107, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19108, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19109, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19110, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19111, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19112, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19113, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19114, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19115, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19116, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19117, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19118, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19119, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19120, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19121, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19122, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19123, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19124, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19125, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19126, "properties": { "facing": "east", "half": "upper", @@ -227039,7 +230782,7 @@ } }, { - "id": 19109, + "id": 19127, "properties": { "facing": "east", "half": "lower", @@ -227049,7 +230792,7 @@ } }, { - "id": 19110, + "id": 19128, "properties": { "facing": "east", "half": "lower", @@ -227059,7 +230802,7 @@ } }, { - "id": 19111, + "id": 19129, "properties": { "facing": "east", "half": "lower", @@ -227069,7 +230812,7 @@ } }, { - "id": 19112, + "id": 19130, "properties": { "facing": "east", "half": "lower", @@ -227079,7 +230822,7 @@ } }, { - "id": 19113, + "id": 19131, "properties": { "facing": "east", "half": "lower", @@ -227089,7 +230832,7 @@ } }, { - "id": 19114, + "id": 19132, "properties": { "facing": "east", "half": "lower", @@ -227099,7 +230842,7 @@ } }, { - "id": 19115, + "id": 19133, "properties": { "facing": "east", "half": "lower", @@ -227109,7 +230852,7 @@ } }, { - "id": 19116, + "id": 19134, "properties": { "facing": "east", "half": "lower", @@ -227144,238 +230887,238 @@ ] }, "states": [ - { - "id": 18557, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18558, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18559, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18560, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18561, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18562, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18563, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18564, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18565, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18566, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18567, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18568, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18569, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18570, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18571, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18572, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18573, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18574, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 18575, "properties": { - "east": "false", + "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 18576, "properties": { - "east": "false", + "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, { "id": 18577, "properties": { - "east": "false", + "east": "true", "north": "true", - "south": "false", - "waterlogged": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, { "id": 18578, "properties": { - "east": "false", + "east": "true", "north": "true", - "south": "false", - "waterlogged": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 18579, "properties": { - "east": "false", + "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 18580, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18581, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18582, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18583, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18584, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18585, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18586, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18587, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18588, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18589, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18590, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18591, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18592, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18593, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18594, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18595, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18596, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18597, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18598, "properties": { "east": "false", "north": "true", @@ -227385,7 +231128,7 @@ } }, { - "id": 18581, + "id": 18599, "properties": { "east": "false", "north": "false", @@ -227395,7 +231138,7 @@ } }, { - "id": 18582, + "id": 18600, "properties": { "east": "false", "north": "false", @@ -227405,7 +231148,7 @@ } }, { - "id": 18583, + "id": 18601, "properties": { "east": "false", "north": "false", @@ -227415,7 +231158,7 @@ } }, { - "id": 18584, + "id": 18602, "properties": { "east": "false", "north": "false", @@ -227425,7 +231168,7 @@ } }, { - "id": 18585, + "id": 18603, "properties": { "east": "false", "north": "false", @@ -227435,7 +231178,7 @@ } }, { - "id": 18586, + "id": 18604, "properties": { "east": "false", "north": "false", @@ -227445,7 +231188,7 @@ } }, { - "id": 18587, + "id": 18605, "properties": { "east": "false", "north": "false", @@ -227456,7 +231199,7 @@ }, { "default": true, - "id": 18588, + "id": 18606, "properties": { "east": "false", "north": "false", @@ -227490,7 +231233,7 @@ }, "states": [ { - "id": 18749, + "id": 18767, "properties": { "facing": "north", "in_wall": "true", @@ -227499,7 +231242,7 @@ } }, { - "id": 18750, + "id": 18768, "properties": { "facing": "north", "in_wall": "true", @@ -227508,7 +231251,7 @@ } }, { - "id": 18751, + "id": 18769, "properties": { "facing": "north", "in_wall": "true", @@ -227517,7 +231260,7 @@ } }, { - "id": 18752, + "id": 18770, "properties": { "facing": "north", "in_wall": "true", @@ -227526,7 +231269,7 @@ } }, { - "id": 18753, + "id": 18771, "properties": { "facing": "north", "in_wall": "false", @@ -227535,7 +231278,7 @@ } }, { - "id": 18754, + "id": 18772, "properties": { "facing": "north", "in_wall": "false", @@ -227544,7 +231287,7 @@ } }, { - "id": 18755, + "id": 18773, "properties": { "facing": "north", "in_wall": "false", @@ -227554,7 +231297,7 @@ }, { "default": true, - "id": 18756, + "id": 18774, "properties": { "facing": "north", "in_wall": "false", @@ -227562,179 +231305,179 @@ "powered": "false" } }, - { - "id": 18757, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18758, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18759, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18760, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18761, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18762, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18763, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18764, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18765, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18766, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18767, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18768, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18769, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18770, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18771, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18772, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18773, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18774, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 18775, "properties": { - "facing": "east", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 18776, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18777, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18778, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18779, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18780, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18781, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18782, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18783, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18784, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18785, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18786, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18787, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18788, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18789, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18790, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18791, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18792, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18793, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18794, "properties": { "facing": "east", "in_wall": "true", @@ -227743,7 +231486,7 @@ } }, { - "id": 18777, + "id": 18795, "properties": { "facing": "east", "in_wall": "false", @@ -227752,7 +231495,7 @@ } }, { - "id": 18778, + "id": 18796, "properties": { "facing": "east", "in_wall": "false", @@ -227761,7 +231504,7 @@ } }, { - "id": 18779, + "id": 18797, "properties": { "facing": "east", "in_wall": "false", @@ -227770,7 +231513,7 @@ } }, { - "id": 18780, + "id": 18798, "properties": { "facing": "east", "in_wall": "false", @@ -227784,7 +231527,7 @@ "states": [ { "default": true, - "id": 18433 + "id": 18451 } ] }, @@ -227818,43 +231561,11 @@ ] }, "states": [ - { - "id": 5342, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5343, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5344, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5345, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, { "id": 5346, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "true" } }, @@ -227862,7 +231573,7 @@ "id": 5347, "properties": { "attached": "true", - "rotation": "2", + "rotation": "0", "waterlogged": "false" } }, @@ -227870,7 +231581,7 @@ "id": 5348, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -227878,7 +231589,7 @@ "id": 5349, "properties": { "attached": "true", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -227886,7 +231597,7 @@ "id": 5350, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -227894,7 +231605,7 @@ "id": 5351, "properties": { "attached": "true", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -227902,7 +231613,7 @@ "id": 5352, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -227910,7 +231621,7 @@ "id": 5353, "properties": { "attached": "true", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -227918,7 +231629,7 @@ "id": 5354, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -227926,7 +231637,7 @@ "id": 5355, "properties": { "attached": "true", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -227934,7 +231645,7 @@ "id": 5356, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -227942,7 +231653,7 @@ "id": 5357, "properties": { "attached": "true", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -227950,7 +231661,7 @@ "id": 5358, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -227958,7 +231669,7 @@ "id": 5359, "properties": { "attached": "true", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -227966,7 +231677,7 @@ "id": 5360, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -227974,7 +231685,7 @@ "id": 5361, "properties": { "attached": "true", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -227982,7 +231693,7 @@ "id": 5362, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -227990,7 +231701,7 @@ "id": 5363, "properties": { "attached": "true", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -227998,7 +231709,7 @@ "id": 5364, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -228006,7 +231717,7 @@ "id": 5365, "properties": { "attached": "true", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -228014,7 +231725,7 @@ "id": 5366, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -228022,7 +231733,7 @@ "id": 5367, "properties": { "attached": "true", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -228030,7 +231741,7 @@ "id": 5368, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -228038,7 +231749,7 @@ "id": 5369, "properties": { "attached": "true", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -228046,7 +231757,7 @@ "id": 5370, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -228054,7 +231765,7 @@ "id": 5371, "properties": { "attached": "true", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -228062,7 +231773,7 @@ "id": 5372, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, @@ -228070,12 +231781,44 @@ "id": 5373, "properties": { "attached": "true", - "rotation": "15", + "rotation": "13", "waterlogged": "false" } }, { "id": 5374, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5375, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5376, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5377, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5378, "properties": { "attached": "false", "rotation": "0", @@ -228084,50 +231827,18 @@ }, { "default": true, - "id": 5375, + "id": 5379, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5376, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5377, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5378, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5379, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, { "id": 5380, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "true" } }, @@ -228135,7 +231846,7 @@ "id": 5381, "properties": { "attached": "false", - "rotation": "3", + "rotation": "1", "waterlogged": "false" } }, @@ -228143,7 +231854,7 @@ "id": 5382, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "true" } }, @@ -228151,7 +231862,7 @@ "id": 5383, "properties": { "attached": "false", - "rotation": "4", + "rotation": "2", "waterlogged": "false" } }, @@ -228159,7 +231870,7 @@ "id": 5384, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "true" } }, @@ -228167,7 +231878,7 @@ "id": 5385, "properties": { "attached": "false", - "rotation": "5", + "rotation": "3", "waterlogged": "false" } }, @@ -228175,7 +231886,7 @@ "id": 5386, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "true" } }, @@ -228183,7 +231894,7 @@ "id": 5387, "properties": { "attached": "false", - "rotation": "6", + "rotation": "4", "waterlogged": "false" } }, @@ -228191,7 +231902,7 @@ "id": 5388, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "true" } }, @@ -228199,7 +231910,7 @@ "id": 5389, "properties": { "attached": "false", - "rotation": "7", + "rotation": "5", "waterlogged": "false" } }, @@ -228207,7 +231918,7 @@ "id": 5390, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "true" } }, @@ -228215,7 +231926,7 @@ "id": 5391, "properties": { "attached": "false", - "rotation": "8", + "rotation": "6", "waterlogged": "false" } }, @@ -228223,7 +231934,7 @@ "id": 5392, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "true" } }, @@ -228231,7 +231942,7 @@ "id": 5393, "properties": { "attached": "false", - "rotation": "9", + "rotation": "7", "waterlogged": "false" } }, @@ -228239,7 +231950,7 @@ "id": 5394, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "true" } }, @@ -228247,7 +231958,7 @@ "id": 5395, "properties": { "attached": "false", - "rotation": "10", + "rotation": "8", "waterlogged": "false" } }, @@ -228255,7 +231966,7 @@ "id": 5396, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "true" } }, @@ -228263,7 +231974,7 @@ "id": 5397, "properties": { "attached": "false", - "rotation": "11", + "rotation": "9", "waterlogged": "false" } }, @@ -228271,7 +231982,7 @@ "id": 5398, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "true" } }, @@ -228279,7 +231990,7 @@ "id": 5399, "properties": { "attached": "false", - "rotation": "12", + "rotation": "10", "waterlogged": "false" } }, @@ -228287,7 +231998,7 @@ "id": 5400, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "true" } }, @@ -228295,7 +232006,7 @@ "id": 5401, "properties": { "attached": "false", - "rotation": "13", + "rotation": "11", "waterlogged": "false" } }, @@ -228303,7 +232014,7 @@ "id": 5402, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "true" } }, @@ -228311,7 +232022,7 @@ "id": 5403, "properties": { "attached": "false", - "rotation": "14", + "rotation": "12", "waterlogged": "false" } }, @@ -228319,12 +232030,44 @@ "id": 5404, "properties": { "attached": "false", - "rotation": "15", + "rotation": "13", "waterlogged": "true" } }, { "id": 5405, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5406, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5407, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5408, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5409, "properties": { "attached": "false", "rotation": "15", @@ -228343,20 +232086,20 @@ }, "states": [ { - "id": 18426, + "id": 18444, "properties": { "axis": "x" } }, { "default": true, - "id": 18427, + "id": 18445, "properties": { "axis": "y" } }, { - "id": 18428, + "id": 18446, "properties": { "axis": "z" } @@ -228367,7 +232110,7 @@ "states": [ { "default": true, - "id": 18432 + "id": 18450 } ] }, @@ -228375,7 +232118,7 @@ "states": [ { "default": true, - "id": 18508 + "id": 18526 } ] }, @@ -228388,14 +232131,14 @@ }, "states": [ { - "id": 18523, + "id": 18541, "properties": { "powered": "true" } }, { "default": true, - "id": 18524, + "id": 18542, "properties": { "powered": "false" } @@ -228406,7 +232149,7 @@ "states": [ { "default": true, - "id": 18435 + "id": 18453 } ] }, @@ -228437,7 +232180,7 @@ }, "states": [ { - "id": 19149, + "id": 19167, "properties": { "rotation": "0", "waterlogged": "true" @@ -228445,217 +232188,217 @@ }, { "default": true, - "id": 19150, + "id": 19168, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 19151, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 19152, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 19153, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 19154, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 19155, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 19156, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 19157, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 19158, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 19159, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 19160, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 19161, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 19162, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 19163, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 19164, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 19165, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 19166, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 19167, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 19168, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, { "id": 19169, "properties": { - "rotation": "10", + "rotation": "1", "waterlogged": "true" } }, { "id": 19170, "properties": { - "rotation": "10", + "rotation": "1", "waterlogged": "false" } }, { "id": 19171, "properties": { - "rotation": "11", + "rotation": "2", "waterlogged": "true" } }, { "id": 19172, "properties": { - "rotation": "11", + "rotation": "2", "waterlogged": "false" } }, { "id": 19173, "properties": { - "rotation": "12", + "rotation": "3", "waterlogged": "true" } }, { "id": 19174, "properties": { - "rotation": "12", + "rotation": "3", "waterlogged": "false" } }, { "id": 19175, "properties": { - "rotation": "13", + "rotation": "4", "waterlogged": "true" } }, { "id": 19176, "properties": { - "rotation": "13", + "rotation": "4", "waterlogged": "false" } }, { "id": 19177, "properties": { - "rotation": "14", + "rotation": "5", "waterlogged": "true" } }, { "id": 19178, "properties": { - "rotation": "14", + "rotation": "5", "waterlogged": "false" } }, { "id": 19179, "properties": { - "rotation": "15", + "rotation": "6", "waterlogged": "true" } }, { "id": 19180, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19181, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19182, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19183, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19184, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19185, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19186, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19187, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19188, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19189, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19190, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19191, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19192, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19193, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19194, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19195, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19196, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19197, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19198, "properties": { "rotation": "15", "waterlogged": "false" @@ -228677,21 +232420,21 @@ }, "states": [ { - "id": 18515, + "id": 18533, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 18516, + "id": 18534, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 18517, + "id": 18535, "properties": { "type": "bottom", "waterlogged": "true" @@ -228699,21 +232442,21 @@ }, { "default": true, - "id": 18518, + "id": 18536, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 18519, + "id": 18537, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 18520, + "id": 18538, "properties": { "type": "double", "waterlogged": "false" @@ -228747,7 +232490,7 @@ }, "states": [ { - "id": 18861, + "id": 18879, "properties": { "facing": "north", "half": "top", @@ -228756,7 +232499,7 @@ } }, { - "id": 18862, + "id": 18880, "properties": { "facing": "north", "half": "top", @@ -228765,7 +232508,7 @@ } }, { - "id": 18863, + "id": 18881, "properties": { "facing": "north", "half": "top", @@ -228774,7 +232517,7 @@ } }, { - "id": 18864, + "id": 18882, "properties": { "facing": "north", "half": "top", @@ -228783,7 +232526,7 @@ } }, { - "id": 18865, + "id": 18883, "properties": { "facing": "north", "half": "top", @@ -228792,7 +232535,7 @@ } }, { - "id": 18866, + "id": 18884, "properties": { "facing": "north", "half": "top", @@ -228801,7 +232544,7 @@ } }, { - "id": 18867, + "id": 18885, "properties": { "facing": "north", "half": "top", @@ -228810,7 +232553,7 @@ } }, { - "id": 18868, + "id": 18886, "properties": { "facing": "north", "half": "top", @@ -228819,7 +232562,7 @@ } }, { - "id": 18869, + "id": 18887, "properties": { "facing": "north", "half": "top", @@ -228828,7 +232571,7 @@ } }, { - "id": 18870, + "id": 18888, "properties": { "facing": "north", "half": "top", @@ -228837,7 +232580,7 @@ } }, { - "id": 18871, + "id": 18889, "properties": { "facing": "north", "half": "bottom", @@ -228847,250 +232590,250 @@ }, { "default": true, - "id": 18872, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18873, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18874, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18875, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18876, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18877, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18878, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18879, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18880, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18881, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18882, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18883, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18884, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18885, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18886, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18887, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18888, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18889, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { "id": 18890, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 18891, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 18892, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 18893, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 18894, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 18895, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 18896, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 18897, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 18898, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 18899, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18900, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18901, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18902, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18903, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18904, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18905, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18906, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18907, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18908, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18910, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18917, "properties": { "facing": "south", "half": "bottom", @@ -229099,7 +232842,7 @@ } }, { - "id": 18900, + "id": 18918, "properties": { "facing": "south", "half": "bottom", @@ -229107,174 +232850,12 @@ "waterlogged": "false" } }, - { - "id": 18901, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18902, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18903, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18904, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18905, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18906, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18907, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18908, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18909, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18910, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18911, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18912, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18913, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18914, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18915, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18916, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18917, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18918, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, { "id": 18919, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, @@ -229282,175 +232863,337 @@ "id": 18920, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { "id": 18921, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 18922, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 18923, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 18924, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 18925, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 18926, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 18927, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 18928, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 18929, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { "id": 18930, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { "id": 18931, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "true" } }, { "id": 18932, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "straight", + "shape": "inner_left", "waterlogged": "false" } }, { "id": 18933, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "true" } }, { "id": 18934, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_left", + "shape": "inner_right", "waterlogged": "false" } }, { "id": 18935, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "true" } }, { "id": 18936, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "inner_right", + "shape": "outer_left", "waterlogged": "false" } }, { "id": 18937, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "true" } }, { "id": 18938, "properties": { - "facing": "east", + "facing": "west", "half": "bottom", - "shape": "outer_left", + "shape": "outer_right", "waterlogged": "false" } }, { "id": 18939, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18940, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18941, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18942, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18943, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18944, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18945, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18946, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18947, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18948, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18954, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18955, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18956, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18957, "properties": { "facing": "east", "half": "bottom", @@ -229459,7 +233202,7 @@ } }, { - "id": 18940, + "id": 18958, "properties": { "facing": "east", "half": "bottom", @@ -229479,20 +233222,20 @@ }, "states": [ { - "id": 18420, + "id": 18438, "properties": { "axis": "x" } }, { "default": true, - "id": 18421, + "id": 18439, "properties": { "axis": "y" } }, { - "id": 18422, + "id": 18440, "properties": { "axis": "z" } @@ -229526,7 +233269,7 @@ }, "states": [ { - "id": 18653, + "id": 18671, "properties": { "facing": "north", "half": "top", @@ -229536,7 +233279,7 @@ } }, { - "id": 18654, + "id": 18672, "properties": { "facing": "north", "half": "top", @@ -229546,7 +233289,7 @@ } }, { - "id": 18655, + "id": 18673, "properties": { "facing": "north", "half": "top", @@ -229556,7 +233299,7 @@ } }, { - "id": 18656, + "id": 18674, "properties": { "facing": "north", "half": "top", @@ -229566,7 +233309,7 @@ } }, { - "id": 18657, + "id": 18675, "properties": { "facing": "north", "half": "top", @@ -229576,7 +233319,7 @@ } }, { - "id": 18658, + "id": 18676, "properties": { "facing": "north", "half": "top", @@ -229586,7 +233329,7 @@ } }, { - "id": 18659, + "id": 18677, "properties": { "facing": "north", "half": "top", @@ -229596,7 +233339,7 @@ } }, { - "id": 18660, + "id": 18678, "properties": { "facing": "north", "half": "top", @@ -229606,7 +233349,7 @@ } }, { - "id": 18661, + "id": 18679, "properties": { "facing": "north", "half": "bottom", @@ -229616,7 +233359,7 @@ } }, { - "id": 18662, + "id": 18680, "properties": { "facing": "north", "half": "bottom", @@ -229626,7 +233369,7 @@ } }, { - "id": 18663, + "id": 18681, "properties": { "facing": "north", "half": "bottom", @@ -229636,7 +233379,7 @@ } }, { - "id": 18664, + "id": 18682, "properties": { "facing": "north", "half": "bottom", @@ -229646,7 +233389,7 @@ } }, { - "id": 18665, + "id": 18683, "properties": { "facing": "north", "half": "bottom", @@ -229656,7 +233399,7 @@ } }, { - "id": 18666, + "id": 18684, "properties": { "facing": "north", "half": "bottom", @@ -229666,7 +233409,7 @@ } }, { - "id": 18667, + "id": 18685, "properties": { "facing": "north", "half": "bottom", @@ -229677,7 +233420,7 @@ }, { "default": true, - "id": 18668, + "id": 18686, "properties": { "facing": "north", "half": "bottom", @@ -229686,318 +233429,318 @@ "waterlogged": "false" } }, - { - "id": 18669, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18670, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18671, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18672, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18673, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18674, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18675, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18676, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18677, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18678, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18679, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18680, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18681, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18682, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18683, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18684, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18685, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18686, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 18687, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 18688, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 18689, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { "id": 18690, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 18691, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 18692, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 18693, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { "id": 18694, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { "id": 18695, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 18696, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 18697, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { "id": 18698, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 18699, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 18700, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18701, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18702, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18703, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18704, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18705, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18706, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18707, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18708, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18709, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18710, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18711, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18712, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18713, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18714, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18715, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18716, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18717, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18718, "properties": { "facing": "west", "half": "bottom", @@ -230007,7 +233750,7 @@ } }, { - "id": 18701, + "id": 18719, "properties": { "facing": "east", "half": "top", @@ -230017,7 +233760,7 @@ } }, { - "id": 18702, + "id": 18720, "properties": { "facing": "east", "half": "top", @@ -230027,7 +233770,7 @@ } }, { - "id": 18703, + "id": 18721, "properties": { "facing": "east", "half": "top", @@ -230037,7 +233780,7 @@ } }, { - "id": 18704, + "id": 18722, "properties": { "facing": "east", "half": "top", @@ -230047,7 +233790,7 @@ } }, { - "id": 18705, + "id": 18723, "properties": { "facing": "east", "half": "top", @@ -230057,7 +233800,7 @@ } }, { - "id": 18706, + "id": 18724, "properties": { "facing": "east", "half": "top", @@ -230067,7 +233810,7 @@ } }, { - "id": 18707, + "id": 18725, "properties": { "facing": "east", "half": "top", @@ -230077,7 +233820,7 @@ } }, { - "id": 18708, + "id": 18726, "properties": { "facing": "east", "half": "top", @@ -230087,7 +233830,7 @@ } }, { - "id": 18709, + "id": 18727, "properties": { "facing": "east", "half": "bottom", @@ -230097,7 +233840,7 @@ } }, { - "id": 18710, + "id": 18728, "properties": { "facing": "east", "half": "bottom", @@ -230107,7 +233850,7 @@ } }, { - "id": 18711, + "id": 18729, "properties": { "facing": "east", "half": "bottom", @@ -230117,7 +233860,7 @@ } }, { - "id": 18712, + "id": 18730, "properties": { "facing": "east", "half": "bottom", @@ -230127,7 +233870,7 @@ } }, { - "id": 18713, + "id": 18731, "properties": { "facing": "east", "half": "bottom", @@ -230137,7 +233880,7 @@ } }, { - "id": 18714, + "id": 18732, "properties": { "facing": "east", "half": "bottom", @@ -230147,7 +233890,7 @@ } }, { - "id": 18715, + "id": 18733, "properties": { "facing": "east", "half": "bottom", @@ -230157,7 +233900,7 @@ } }, { - "id": 18716, + "id": 18734, "properties": { "facing": "east", "half": "bottom", @@ -230183,7 +233926,7 @@ }, "states": [ { - "id": 5606, + "id": 5610, "properties": { "facing": "north", "waterlogged": "true" @@ -230191,49 +233934,49 @@ }, { "default": true, - "id": 5607, + "id": 5611, "properties": { "facing": "north", "waterlogged": "false" } }, - { - "id": 5608, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5609, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5610, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5611, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, { "id": 5612, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5613, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5614, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5615, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5616, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5613, + "id": 5617, "properties": { "facing": "east", "waterlogged": "false" @@ -230256,7 +233999,7 @@ }, "states": [ { - "id": 19189, + "id": 19207, "properties": { "facing": "north", "waterlogged": "true" @@ -230264,49 +234007,49 @@ }, { "default": true, - "id": 19190, + "id": 19208, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 19191, + "id": 19209, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 19192, + "id": 19210, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 19193, + "id": 19211, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 19194, + "id": 19212, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 19195, + "id": 19213, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 19196, + "id": 19214, "properties": { "facing": "east", "waterlogged": "false" @@ -230318,7 +234061,7 @@ "states": [ { "default": true, - "id": 18434 + "id": 18452 } ] }, @@ -230454,19 +234197,19 @@ "states": [ { "default": true, - "id": 7395, + "id": 7399, "properties": { "level": "1" } }, { - "id": 7396, + "id": 7400, "properties": { "level": "2" } }, { - "id": 7397, + "id": 7401, "properties": { "level": "3" } @@ -230477,7 +234220,7 @@ "states": [ { "default": true, - "id": 21515 + "id": 21917 } ] }, @@ -230485,7 +234228,7 @@ "states": [ { "default": true, - "id": 21522 + "id": 21924 } ] }, @@ -230503,21 +234246,21 @@ }, "states": [ { - "id": 21861, + "id": 22263, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21862, + "id": 22264, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21863, + "id": 22265, "properties": { "type": "bottom", "waterlogged": "true" @@ -230525,21 +234268,21 @@ }, { "default": true, - "id": 21864, + "id": 22266, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21865, + "id": 22267, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21866, + "id": 22268, "properties": { "type": "double", "waterlogged": "false" @@ -230573,7 +234316,7 @@ }, "states": [ { - "id": 21763, + "id": 22165, "properties": { "facing": "north", "half": "top", @@ -230582,7 +234325,7 @@ } }, { - "id": 21764, + "id": 22166, "properties": { "facing": "north", "half": "top", @@ -230591,7 +234334,7 @@ } }, { - "id": 21765, + "id": 22167, "properties": { "facing": "north", "half": "top", @@ -230600,7 +234343,7 @@ } }, { - "id": 21766, + "id": 22168, "properties": { "facing": "north", "half": "top", @@ -230609,7 +234352,7 @@ } }, { - "id": 21767, + "id": 22169, "properties": { "facing": "north", "half": "top", @@ -230618,7 +234361,7 @@ } }, { - "id": 21768, + "id": 22170, "properties": { "facing": "north", "half": "top", @@ -230627,7 +234370,7 @@ } }, { - "id": 21769, + "id": 22171, "properties": { "facing": "north", "half": "top", @@ -230636,7 +234379,7 @@ } }, { - "id": 21770, + "id": 22172, "properties": { "facing": "north", "half": "top", @@ -230645,7 +234388,7 @@ } }, { - "id": 21771, + "id": 22173, "properties": { "facing": "north", "half": "top", @@ -230654,7 +234397,7 @@ } }, { - "id": 21772, + "id": 22174, "properties": { "facing": "north", "half": "top", @@ -230663,7 +234406,7 @@ } }, { - "id": 21773, + "id": 22175, "properties": { "facing": "north", "half": "bottom", @@ -230673,7 +234416,7 @@ }, { "default": true, - "id": 21774, + "id": 22176, "properties": { "facing": "north", "half": "bottom", @@ -230682,7 +234425,7 @@ } }, { - "id": 21775, + "id": 22177, "properties": { "facing": "north", "half": "bottom", @@ -230691,7 +234434,7 @@ } }, { - "id": 21776, + "id": 22178, "properties": { "facing": "north", "half": "bottom", @@ -230700,7 +234443,7 @@ } }, { - "id": 21777, + "id": 22179, "properties": { "facing": "north", "half": "bottom", @@ -230709,7 +234452,7 @@ } }, { - "id": 21778, + "id": 22180, "properties": { "facing": "north", "half": "bottom", @@ -230718,7 +234461,7 @@ } }, { - "id": 21779, + "id": 22181, "properties": { "facing": "north", "half": "bottom", @@ -230727,7 +234470,7 @@ } }, { - "id": 21780, + "id": 22182, "properties": { "facing": "north", "half": "bottom", @@ -230736,7 +234479,7 @@ } }, { - "id": 21781, + "id": 22183, "properties": { "facing": "north", "half": "bottom", @@ -230745,7 +234488,7 @@ } }, { - "id": 21782, + "id": 22184, "properties": { "facing": "north", "half": "bottom", @@ -230754,7 +234497,7 @@ } }, { - "id": 21783, + "id": 22185, "properties": { "facing": "south", "half": "top", @@ -230763,7 +234506,7 @@ } }, { - "id": 21784, + "id": 22186, "properties": { "facing": "south", "half": "top", @@ -230772,7 +234515,7 @@ } }, { - "id": 21785, + "id": 22187, "properties": { "facing": "south", "half": "top", @@ -230781,7 +234524,7 @@ } }, { - "id": 21786, + "id": 22188, "properties": { "facing": "south", "half": "top", @@ -230790,7 +234533,7 @@ } }, { - "id": 21787, + "id": 22189, "properties": { "facing": "south", "half": "top", @@ -230799,7 +234542,7 @@ } }, { - "id": 21788, + "id": 22190, "properties": { "facing": "south", "half": "top", @@ -230808,7 +234551,7 @@ } }, { - "id": 21789, + "id": 22191, "properties": { "facing": "south", "half": "top", @@ -230817,7 +234560,7 @@ } }, { - "id": 21790, + "id": 22192, "properties": { "facing": "south", "half": "top", @@ -230826,7 +234569,7 @@ } }, { - "id": 21791, + "id": 22193, "properties": { "facing": "south", "half": "top", @@ -230835,7 +234578,7 @@ } }, { - "id": 21792, + "id": 22194, "properties": { "facing": "south", "half": "top", @@ -230844,7 +234587,7 @@ } }, { - "id": 21793, + "id": 22195, "properties": { "facing": "south", "half": "bottom", @@ -230853,7 +234596,7 @@ } }, { - "id": 21794, + "id": 22196, "properties": { "facing": "south", "half": "bottom", @@ -230862,7 +234605,7 @@ } }, { - "id": 21795, + "id": 22197, "properties": { "facing": "south", "half": "bottom", @@ -230871,7 +234614,7 @@ } }, { - "id": 21796, + "id": 22198, "properties": { "facing": "south", "half": "bottom", @@ -230880,7 +234623,7 @@ } }, { - "id": 21797, + "id": 22199, "properties": { "facing": "south", "half": "bottom", @@ -230889,7 +234632,7 @@ } }, { - "id": 21798, + "id": 22200, "properties": { "facing": "south", "half": "bottom", @@ -230898,7 +234641,7 @@ } }, { - "id": 21799, + "id": 22201, "properties": { "facing": "south", "half": "bottom", @@ -230907,7 +234650,7 @@ } }, { - "id": 21800, + "id": 22202, "properties": { "facing": "south", "half": "bottom", @@ -230916,7 +234659,7 @@ } }, { - "id": 21801, + "id": 22203, "properties": { "facing": "south", "half": "bottom", @@ -230925,7 +234668,7 @@ } }, { - "id": 21802, + "id": 22204, "properties": { "facing": "south", "half": "bottom", @@ -230934,7 +234677,7 @@ } }, { - "id": 21803, + "id": 22205, "properties": { "facing": "west", "half": "top", @@ -230943,7 +234686,7 @@ } }, { - "id": 21804, + "id": 22206, "properties": { "facing": "west", "half": "top", @@ -230952,7 +234695,7 @@ } }, { - "id": 21805, + "id": 22207, "properties": { "facing": "west", "half": "top", @@ -230961,7 +234704,7 @@ } }, { - "id": 21806, + "id": 22208, "properties": { "facing": "west", "half": "top", @@ -230970,7 +234713,7 @@ } }, { - "id": 21807, + "id": 22209, "properties": { "facing": "west", "half": "top", @@ -230979,7 +234722,7 @@ } }, { - "id": 21808, + "id": 22210, "properties": { "facing": "west", "half": "top", @@ -230988,7 +234731,7 @@ } }, { - "id": 21809, + "id": 22211, "properties": { "facing": "west", "half": "top", @@ -230997,7 +234740,7 @@ } }, { - "id": 21810, + "id": 22212, "properties": { "facing": "west", "half": "top", @@ -231006,7 +234749,7 @@ } }, { - "id": 21811, + "id": 22213, "properties": { "facing": "west", "half": "top", @@ -231015,7 +234758,7 @@ } }, { - "id": 21812, + "id": 22214, "properties": { "facing": "west", "half": "top", @@ -231024,7 +234767,7 @@ } }, { - "id": 21813, + "id": 22215, "properties": { "facing": "west", "half": "bottom", @@ -231033,7 +234776,7 @@ } }, { - "id": 21814, + "id": 22216, "properties": { "facing": "west", "half": "bottom", @@ -231042,7 +234785,7 @@ } }, { - "id": 21815, + "id": 22217, "properties": { "facing": "west", "half": "bottom", @@ -231051,7 +234794,7 @@ } }, { - "id": 21816, + "id": 22218, "properties": { "facing": "west", "half": "bottom", @@ -231060,7 +234803,7 @@ } }, { - "id": 21817, + "id": 22219, "properties": { "facing": "west", "half": "bottom", @@ -231069,7 +234812,7 @@ } }, { - "id": 21818, + "id": 22220, "properties": { "facing": "west", "half": "bottom", @@ -231078,7 +234821,7 @@ } }, { - "id": 21819, + "id": 22221, "properties": { "facing": "west", "half": "bottom", @@ -231087,7 +234830,7 @@ } }, { - "id": 21820, + "id": 22222, "properties": { "facing": "west", "half": "bottom", @@ -231096,7 +234839,7 @@ } }, { - "id": 21821, + "id": 22223, "properties": { "facing": "west", "half": "bottom", @@ -231105,7 +234848,7 @@ } }, { - "id": 21822, + "id": 22224, "properties": { "facing": "west", "half": "bottom", @@ -231114,7 +234857,7 @@ } }, { - "id": 21823, + "id": 22225, "properties": { "facing": "east", "half": "top", @@ -231123,7 +234866,7 @@ } }, { - "id": 21824, + "id": 22226, "properties": { "facing": "east", "half": "top", @@ -231132,7 +234875,7 @@ } }, { - "id": 21825, + "id": 22227, "properties": { "facing": "east", "half": "top", @@ -231141,7 +234884,7 @@ } }, { - "id": 21826, + "id": 22228, "properties": { "facing": "east", "half": "top", @@ -231150,7 +234893,7 @@ } }, { - "id": 21827, + "id": 22229, "properties": { "facing": "east", "half": "top", @@ -231159,7 +234902,7 @@ } }, { - "id": 21828, + "id": 22230, "properties": { "facing": "east", "half": "top", @@ -231168,7 +234911,7 @@ } }, { - "id": 21829, + "id": 22231, "properties": { "facing": "east", "half": "top", @@ -231177,7 +234920,7 @@ } }, { - "id": 21830, + "id": 22232, "properties": { "facing": "east", "half": "top", @@ -231186,7 +234929,7 @@ } }, { - "id": 21831, + "id": 22233, "properties": { "facing": "east", "half": "top", @@ -231195,7 +234938,7 @@ } }, { - "id": 21832, + "id": 22234, "properties": { "facing": "east", "half": "top", @@ -231204,7 +234947,7 @@ } }, { - "id": 21833, + "id": 22235, "properties": { "facing": "east", "half": "bottom", @@ -231213,7 +234956,7 @@ } }, { - "id": 21834, + "id": 22236, "properties": { "facing": "east", "half": "bottom", @@ -231222,7 +234965,7 @@ } }, { - "id": 21835, + "id": 22237, "properties": { "facing": "east", "half": "bottom", @@ -231231,7 +234974,7 @@ } }, { - "id": 21836, + "id": 22238, "properties": { "facing": "east", "half": "bottom", @@ -231240,7 +234983,7 @@ } }, { - "id": 21837, + "id": 22239, "properties": { "facing": "east", "half": "bottom", @@ -231249,7 +234992,7 @@ } }, { - "id": 21838, + "id": 22240, "properties": { "facing": "east", "half": "bottom", @@ -231258,7 +235001,7 @@ } }, { - "id": 21839, + "id": 22241, "properties": { "facing": "east", "half": "bottom", @@ -231267,7 +235010,7 @@ } }, { - "id": 21840, + "id": 22242, "properties": { "facing": "east", "half": "bottom", @@ -231276,7 +235019,7 @@ } }, { - "id": 21841, + "id": 22243, "properties": { "facing": "east", "half": "bottom", @@ -231285,7 +235028,7 @@ } }, { - "id": 21842, + "id": 22244, "properties": { "facing": "east", "half": "bottom", @@ -231299,7 +235042,7 @@ "states": [ { "default": true, - "id": 21517 + "id": 21919 } ] }, @@ -231307,7 +235050,7 @@ "states": [ { "default": true, - "id": 21521 + "id": 21923 } ] }, @@ -231325,21 +235068,21 @@ }, "states": [ { - "id": 21855, + "id": 22257, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21856, + "id": 22258, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21857, + "id": 22259, "properties": { "type": "bottom", "waterlogged": "true" @@ -231347,21 +235090,21 @@ }, { "default": true, - "id": 21858, + "id": 22260, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21859, + "id": 22261, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21860, + "id": 22262, "properties": { "type": "double", "waterlogged": "false" @@ -231395,7 +235138,7 @@ }, "states": [ { - "id": 21683, + "id": 22085, "properties": { "facing": "north", "half": "top", @@ -231404,7 +235147,7 @@ } }, { - "id": 21684, + "id": 22086, "properties": { "facing": "north", "half": "top", @@ -231413,7 +235156,7 @@ } }, { - "id": 21685, + "id": 22087, "properties": { "facing": "north", "half": "top", @@ -231422,7 +235165,7 @@ } }, { - "id": 21686, + "id": 22088, "properties": { "facing": "north", "half": "top", @@ -231431,7 +235174,7 @@ } }, { - "id": 21687, + "id": 22089, "properties": { "facing": "north", "half": "top", @@ -231440,7 +235183,7 @@ } }, { - "id": 21688, + "id": 22090, "properties": { "facing": "north", "half": "top", @@ -231449,7 +235192,7 @@ } }, { - "id": 21689, + "id": 22091, "properties": { "facing": "north", "half": "top", @@ -231458,7 +235201,7 @@ } }, { - "id": 21690, + "id": 22092, "properties": { "facing": "north", "half": "top", @@ -231467,7 +235210,7 @@ } }, { - "id": 21691, + "id": 22093, "properties": { "facing": "north", "half": "top", @@ -231476,7 +235219,7 @@ } }, { - "id": 21692, + "id": 22094, "properties": { "facing": "north", "half": "top", @@ -231485,7 +235228,7 @@ } }, { - "id": 21693, + "id": 22095, "properties": { "facing": "north", "half": "bottom", @@ -231495,7 +235238,7 @@ }, { "default": true, - "id": 21694, + "id": 22096, "properties": { "facing": "north", "half": "bottom", @@ -231504,7 +235247,7 @@ } }, { - "id": 21695, + "id": 22097, "properties": { "facing": "north", "half": "bottom", @@ -231513,7 +235256,7 @@ } }, { - "id": 21696, + "id": 22098, "properties": { "facing": "north", "half": "bottom", @@ -231522,7 +235265,7 @@ } }, { - "id": 21697, + "id": 22099, "properties": { "facing": "north", "half": "bottom", @@ -231531,7 +235274,7 @@ } }, { - "id": 21698, + "id": 22100, "properties": { "facing": "north", "half": "bottom", @@ -231540,7 +235283,7 @@ } }, { - "id": 21699, + "id": 22101, "properties": { "facing": "north", "half": "bottom", @@ -231549,7 +235292,7 @@ } }, { - "id": 21700, + "id": 22102, "properties": { "facing": "north", "half": "bottom", @@ -231558,7 +235301,7 @@ } }, { - "id": 21701, + "id": 22103, "properties": { "facing": "north", "half": "bottom", @@ -231567,7 +235310,7 @@ } }, { - "id": 21702, + "id": 22104, "properties": { "facing": "north", "half": "bottom", @@ -231576,7 +235319,7 @@ } }, { - "id": 21703, + "id": 22105, "properties": { "facing": "south", "half": "top", @@ -231585,7 +235328,7 @@ } }, { - "id": 21704, + "id": 22106, "properties": { "facing": "south", "half": "top", @@ -231594,7 +235337,7 @@ } }, { - "id": 21705, + "id": 22107, "properties": { "facing": "south", "half": "top", @@ -231603,7 +235346,7 @@ } }, { - "id": 21706, + "id": 22108, "properties": { "facing": "south", "half": "top", @@ -231612,7 +235355,7 @@ } }, { - "id": 21707, + "id": 22109, "properties": { "facing": "south", "half": "top", @@ -231621,7 +235364,7 @@ } }, { - "id": 21708, + "id": 22110, "properties": { "facing": "south", "half": "top", @@ -231630,7 +235373,7 @@ } }, { - "id": 21709, + "id": 22111, "properties": { "facing": "south", "half": "top", @@ -231639,7 +235382,7 @@ } }, { - "id": 21710, + "id": 22112, "properties": { "facing": "south", "half": "top", @@ -231648,7 +235391,7 @@ } }, { - "id": 21711, + "id": 22113, "properties": { "facing": "south", "half": "top", @@ -231657,7 +235400,7 @@ } }, { - "id": 21712, + "id": 22114, "properties": { "facing": "south", "half": "top", @@ -231666,7 +235409,7 @@ } }, { - "id": 21713, + "id": 22115, "properties": { "facing": "south", "half": "bottom", @@ -231675,7 +235418,7 @@ } }, { - "id": 21714, + "id": 22116, "properties": { "facing": "south", "half": "bottom", @@ -231684,7 +235427,7 @@ } }, { - "id": 21715, + "id": 22117, "properties": { "facing": "south", "half": "bottom", @@ -231693,7 +235436,7 @@ } }, { - "id": 21716, + "id": 22118, "properties": { "facing": "south", "half": "bottom", @@ -231702,7 +235445,7 @@ } }, { - "id": 21717, + "id": 22119, "properties": { "facing": "south", "half": "bottom", @@ -231711,7 +235454,7 @@ } }, { - "id": 21718, + "id": 22120, "properties": { "facing": "south", "half": "bottom", @@ -231720,7 +235463,7 @@ } }, { - "id": 21719, + "id": 22121, "properties": { "facing": "south", "half": "bottom", @@ -231729,7 +235472,7 @@ } }, { - "id": 21720, + "id": 22122, "properties": { "facing": "south", "half": "bottom", @@ -231738,7 +235481,7 @@ } }, { - "id": 21721, + "id": 22123, "properties": { "facing": "south", "half": "bottom", @@ -231747,7 +235490,7 @@ } }, { - "id": 21722, + "id": 22124, "properties": { "facing": "south", "half": "bottom", @@ -231756,7 +235499,7 @@ } }, { - "id": 21723, + "id": 22125, "properties": { "facing": "west", "half": "top", @@ -231765,7 +235508,7 @@ } }, { - "id": 21724, + "id": 22126, "properties": { "facing": "west", "half": "top", @@ -231774,7 +235517,7 @@ } }, { - "id": 21725, + "id": 22127, "properties": { "facing": "west", "half": "top", @@ -231783,7 +235526,7 @@ } }, { - "id": 21726, + "id": 22128, "properties": { "facing": "west", "half": "top", @@ -231792,7 +235535,7 @@ } }, { - "id": 21727, + "id": 22129, "properties": { "facing": "west", "half": "top", @@ -231801,7 +235544,7 @@ } }, { - "id": 21728, + "id": 22130, "properties": { "facing": "west", "half": "top", @@ -231810,7 +235553,7 @@ } }, { - "id": 21729, + "id": 22131, "properties": { "facing": "west", "half": "top", @@ -231819,7 +235562,7 @@ } }, { - "id": 21730, + "id": 22132, "properties": { "facing": "west", "half": "top", @@ -231828,7 +235571,7 @@ } }, { - "id": 21731, + "id": 22133, "properties": { "facing": "west", "half": "top", @@ -231837,7 +235580,7 @@ } }, { - "id": 21732, + "id": 22134, "properties": { "facing": "west", "half": "top", @@ -231846,7 +235589,7 @@ } }, { - "id": 21733, + "id": 22135, "properties": { "facing": "west", "half": "bottom", @@ -231855,7 +235598,7 @@ } }, { - "id": 21734, + "id": 22136, "properties": { "facing": "west", "half": "bottom", @@ -231864,7 +235607,7 @@ } }, { - "id": 21735, + "id": 22137, "properties": { "facing": "west", "half": "bottom", @@ -231873,7 +235616,7 @@ } }, { - "id": 21736, + "id": 22138, "properties": { "facing": "west", "half": "bottom", @@ -231882,7 +235625,7 @@ } }, { - "id": 21737, + "id": 22139, "properties": { "facing": "west", "half": "bottom", @@ -231891,7 +235634,7 @@ } }, { - "id": 21738, + "id": 22140, "properties": { "facing": "west", "half": "bottom", @@ -231900,7 +235643,7 @@ } }, { - "id": 21739, + "id": 22141, "properties": { "facing": "west", "half": "bottom", @@ -231909,7 +235652,7 @@ } }, { - "id": 21740, + "id": 22142, "properties": { "facing": "west", "half": "bottom", @@ -231918,7 +235661,7 @@ } }, { - "id": 21741, + "id": 22143, "properties": { "facing": "west", "half": "bottom", @@ -231927,7 +235670,7 @@ } }, { - "id": 21742, + "id": 22144, "properties": { "facing": "west", "half": "bottom", @@ -231936,7 +235679,7 @@ } }, { - "id": 21743, + "id": 22145, "properties": { "facing": "east", "half": "top", @@ -231945,7 +235688,7 @@ } }, { - "id": 21744, + "id": 22146, "properties": { "facing": "east", "half": "top", @@ -231954,7 +235697,7 @@ } }, { - "id": 21745, + "id": 22147, "properties": { "facing": "east", "half": "top", @@ -231963,7 +235706,7 @@ } }, { - "id": 21746, + "id": 22148, "properties": { "facing": "east", "half": "top", @@ -231972,7 +235715,7 @@ } }, { - "id": 21747, + "id": 22149, "properties": { "facing": "east", "half": "top", @@ -231981,7 +235724,7 @@ } }, { - "id": 21748, + "id": 22150, "properties": { "facing": "east", "half": "top", @@ -231990,7 +235733,7 @@ } }, { - "id": 21749, + "id": 22151, "properties": { "facing": "east", "half": "top", @@ -231999,7 +235742,7 @@ } }, { - "id": 21750, + "id": 22152, "properties": { "facing": "east", "half": "top", @@ -232008,7 +235751,7 @@ } }, { - "id": 21751, + "id": 22153, "properties": { "facing": "east", "half": "top", @@ -232017,7 +235760,7 @@ } }, { - "id": 21752, + "id": 22154, "properties": { "facing": "east", "half": "top", @@ -232026,7 +235769,7 @@ } }, { - "id": 21753, + "id": 22155, "properties": { "facing": "east", "half": "bottom", @@ -232035,7 +235778,7 @@ } }, { - "id": 21754, + "id": 22156, "properties": { "facing": "east", "half": "bottom", @@ -232044,7 +235787,7 @@ } }, { - "id": 21755, + "id": 22157, "properties": { "facing": "east", "half": "bottom", @@ -232053,7 +235796,7 @@ } }, { - "id": 21756, + "id": 22158, "properties": { "facing": "east", "half": "bottom", @@ -232062,7 +235805,7 @@ } }, { - "id": 21757, + "id": 22159, "properties": { "facing": "east", "half": "bottom", @@ -232071,7 +235814,7 @@ } }, { - "id": 21758, + "id": 22160, "properties": { "facing": "east", "half": "bottom", @@ -232080,7 +235823,7 @@ } }, { - "id": 21759, + "id": 22161, "properties": { "facing": "east", "half": "bottom", @@ -232089,7 +235832,7 @@ } }, { - "id": 21760, + "id": 22162, "properties": { "facing": "east", "half": "bottom", @@ -232098,7 +235841,7 @@ } }, { - "id": 21761, + "id": 22163, "properties": { "facing": "east", "half": "bottom", @@ -232107,7 +235850,7 @@ } }, { - "id": 21762, + "id": 22164, "properties": { "facing": "east", "half": "bottom", @@ -232121,7 +235864,7 @@ "states": [ { "default": true, - "id": 21518 + "id": 21920 } ] }, @@ -232129,7 +235872,7 @@ "states": [ { "default": true, - "id": 21519 + "id": 21921 } ] }, @@ -232147,21 +235890,21 @@ }, "states": [ { - "id": 21843, + "id": 22245, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21844, + "id": 22246, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21845, + "id": 22247, "properties": { "type": "bottom", "waterlogged": "true" @@ -232169,21 +235912,21 @@ }, { "default": true, - "id": 21846, + "id": 22248, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21847, + "id": 22249, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21848, + "id": 22250, "properties": { "type": "double", "waterlogged": "false" @@ -232217,7 +235960,7 @@ }, "states": [ { - "id": 21523, + "id": 21925, "properties": { "facing": "north", "half": "top", @@ -232226,7 +235969,7 @@ } }, { - "id": 21524, + "id": 21926, "properties": { "facing": "north", "half": "top", @@ -232235,7 +235978,7 @@ } }, { - "id": 21525, + "id": 21927, "properties": { "facing": "north", "half": "top", @@ -232244,7 +235987,7 @@ } }, { - "id": 21526, + "id": 21928, "properties": { "facing": "north", "half": "top", @@ -232253,7 +235996,7 @@ } }, { - "id": 21527, + "id": 21929, "properties": { "facing": "north", "half": "top", @@ -232262,7 +236005,7 @@ } }, { - "id": 21528, + "id": 21930, "properties": { "facing": "north", "half": "top", @@ -232271,7 +236014,7 @@ } }, { - "id": 21529, + "id": 21931, "properties": { "facing": "north", "half": "top", @@ -232280,7 +236023,7 @@ } }, { - "id": 21530, + "id": 21932, "properties": { "facing": "north", "half": "top", @@ -232289,7 +236032,7 @@ } }, { - "id": 21531, + "id": 21933, "properties": { "facing": "north", "half": "top", @@ -232298,7 +236041,7 @@ } }, { - "id": 21532, + "id": 21934, "properties": { "facing": "north", "half": "top", @@ -232307,7 +236050,7 @@ } }, { - "id": 21533, + "id": 21935, "properties": { "facing": "north", "half": "bottom", @@ -232317,7 +236060,7 @@ }, { "default": true, - "id": 21534, + "id": 21936, "properties": { "facing": "north", "half": "bottom", @@ -232326,7 +236069,7 @@ } }, { - "id": 21535, + "id": 21937, "properties": { "facing": "north", "half": "bottom", @@ -232335,7 +236078,7 @@ } }, { - "id": 21536, + "id": 21938, "properties": { "facing": "north", "half": "bottom", @@ -232344,7 +236087,7 @@ } }, { - "id": 21537, + "id": 21939, "properties": { "facing": "north", "half": "bottom", @@ -232353,7 +236096,7 @@ } }, { - "id": 21538, + "id": 21940, "properties": { "facing": "north", "half": "bottom", @@ -232362,7 +236105,7 @@ } }, { - "id": 21539, + "id": 21941, "properties": { "facing": "north", "half": "bottom", @@ -232371,7 +236114,7 @@ } }, { - "id": 21540, + "id": 21942, "properties": { "facing": "north", "half": "bottom", @@ -232380,7 +236123,7 @@ } }, { - "id": 21541, + "id": 21943, "properties": { "facing": "north", "half": "bottom", @@ -232389,7 +236132,7 @@ } }, { - "id": 21542, + "id": 21944, "properties": { "facing": "north", "half": "bottom", @@ -232398,7 +236141,7 @@ } }, { - "id": 21543, + "id": 21945, "properties": { "facing": "south", "half": "top", @@ -232407,7 +236150,7 @@ } }, { - "id": 21544, + "id": 21946, "properties": { "facing": "south", "half": "top", @@ -232416,7 +236159,7 @@ } }, { - "id": 21545, + "id": 21947, "properties": { "facing": "south", "half": "top", @@ -232425,7 +236168,7 @@ } }, { - "id": 21546, + "id": 21948, "properties": { "facing": "south", "half": "top", @@ -232434,7 +236177,7 @@ } }, { - "id": 21547, + "id": 21949, "properties": { "facing": "south", "half": "top", @@ -232443,7 +236186,7 @@ } }, { - "id": 21548, + "id": 21950, "properties": { "facing": "south", "half": "top", @@ -232452,7 +236195,7 @@ } }, { - "id": 21549, + "id": 21951, "properties": { "facing": "south", "half": "top", @@ -232461,7 +236204,7 @@ } }, { - "id": 21550, + "id": 21952, "properties": { "facing": "south", "half": "top", @@ -232470,7 +236213,7 @@ } }, { - "id": 21551, + "id": 21953, "properties": { "facing": "south", "half": "top", @@ -232479,7 +236222,7 @@ } }, { - "id": 21552, + "id": 21954, "properties": { "facing": "south", "half": "top", @@ -232488,7 +236231,7 @@ } }, { - "id": 21553, + "id": 21955, "properties": { "facing": "south", "half": "bottom", @@ -232497,7 +236240,7 @@ } }, { - "id": 21554, + "id": 21956, "properties": { "facing": "south", "half": "bottom", @@ -232506,7 +236249,7 @@ } }, { - "id": 21555, + "id": 21957, "properties": { "facing": "south", "half": "bottom", @@ -232515,7 +236258,7 @@ } }, { - "id": 21556, + "id": 21958, "properties": { "facing": "south", "half": "bottom", @@ -232524,7 +236267,7 @@ } }, { - "id": 21557, + "id": 21959, "properties": { "facing": "south", "half": "bottom", @@ -232533,7 +236276,7 @@ } }, { - "id": 21558, + "id": 21960, "properties": { "facing": "south", "half": "bottom", @@ -232542,7 +236285,7 @@ } }, { - "id": 21559, + "id": 21961, "properties": { "facing": "south", "half": "bottom", @@ -232551,7 +236294,7 @@ } }, { - "id": 21560, + "id": 21962, "properties": { "facing": "south", "half": "bottom", @@ -232560,7 +236303,7 @@ } }, { - "id": 21561, + "id": 21963, "properties": { "facing": "south", "half": "bottom", @@ -232569,7 +236312,7 @@ } }, { - "id": 21562, + "id": 21964, "properties": { "facing": "south", "half": "bottom", @@ -232578,7 +236321,7 @@ } }, { - "id": 21563, + "id": 21965, "properties": { "facing": "west", "half": "top", @@ -232587,7 +236330,7 @@ } }, { - "id": 21564, + "id": 21966, "properties": { "facing": "west", "half": "top", @@ -232596,7 +236339,7 @@ } }, { - "id": 21565, + "id": 21967, "properties": { "facing": "west", "half": "top", @@ -232605,7 +236348,7 @@ } }, { - "id": 21566, + "id": 21968, "properties": { "facing": "west", "half": "top", @@ -232614,7 +236357,7 @@ } }, { - "id": 21567, + "id": 21969, "properties": { "facing": "west", "half": "top", @@ -232623,7 +236366,7 @@ } }, { - "id": 21568, + "id": 21970, "properties": { "facing": "west", "half": "top", @@ -232632,7 +236375,7 @@ } }, { - "id": 21569, + "id": 21971, "properties": { "facing": "west", "half": "top", @@ -232641,7 +236384,7 @@ } }, { - "id": 21570, + "id": 21972, "properties": { "facing": "west", "half": "top", @@ -232650,7 +236393,7 @@ } }, { - "id": 21571, + "id": 21973, "properties": { "facing": "west", "half": "top", @@ -232659,7 +236402,7 @@ } }, { - "id": 21572, + "id": 21974, "properties": { "facing": "west", "half": "top", @@ -232668,7 +236411,7 @@ } }, { - "id": 21573, + "id": 21975, "properties": { "facing": "west", "half": "bottom", @@ -232677,7 +236420,7 @@ } }, { - "id": 21574, + "id": 21976, "properties": { "facing": "west", "half": "bottom", @@ -232686,7 +236429,7 @@ } }, { - "id": 21575, + "id": 21977, "properties": { "facing": "west", "half": "bottom", @@ -232695,7 +236438,7 @@ } }, { - "id": 21576, + "id": 21978, "properties": { "facing": "west", "half": "bottom", @@ -232704,7 +236447,7 @@ } }, { - "id": 21577, + "id": 21979, "properties": { "facing": "west", "half": "bottom", @@ -232713,7 +236456,7 @@ } }, { - "id": 21578, + "id": 21980, "properties": { "facing": "west", "half": "bottom", @@ -232722,7 +236465,7 @@ } }, { - "id": 21579, + "id": 21981, "properties": { "facing": "west", "half": "bottom", @@ -232731,7 +236474,7 @@ } }, { - "id": 21580, + "id": 21982, "properties": { "facing": "west", "half": "bottom", @@ -232740,7 +236483,7 @@ } }, { - "id": 21581, + "id": 21983, "properties": { "facing": "west", "half": "bottom", @@ -232749,7 +236492,7 @@ } }, { - "id": 21582, + "id": 21984, "properties": { "facing": "west", "half": "bottom", @@ -232758,7 +236501,7 @@ } }, { - "id": 21583, + "id": 21985, "properties": { "facing": "east", "half": "top", @@ -232767,7 +236510,7 @@ } }, { - "id": 21584, + "id": 21986, "properties": { "facing": "east", "half": "top", @@ -232776,7 +236519,7 @@ } }, { - "id": 21585, + "id": 21987, "properties": { "facing": "east", "half": "top", @@ -232785,7 +236528,7 @@ } }, { - "id": 21586, + "id": 21988, "properties": { "facing": "east", "half": "top", @@ -232794,7 +236537,7 @@ } }, { - "id": 21587, + "id": 21989, "properties": { "facing": "east", "half": "top", @@ -232803,7 +236546,7 @@ } }, { - "id": 21588, + "id": 21990, "properties": { "facing": "east", "half": "top", @@ -232812,7 +236555,7 @@ } }, { - "id": 21589, + "id": 21991, "properties": { "facing": "east", "half": "top", @@ -232821,7 +236564,7 @@ } }, { - "id": 21590, + "id": 21992, "properties": { "facing": "east", "half": "top", @@ -232830,7 +236573,7 @@ } }, { - "id": 21591, + "id": 21993, "properties": { "facing": "east", "half": "top", @@ -232839,7 +236582,7 @@ } }, { - "id": 21592, + "id": 21994, "properties": { "facing": "east", "half": "top", @@ -232848,7 +236591,7 @@ } }, { - "id": 21593, + "id": 21995, "properties": { "facing": "east", "half": "bottom", @@ -232857,7 +236600,7 @@ } }, { - "id": 21594, + "id": 21996, "properties": { "facing": "east", "half": "bottom", @@ -232866,7 +236609,7 @@ } }, { - "id": 21595, + "id": 21997, "properties": { "facing": "east", "half": "bottom", @@ -232875,7 +236618,7 @@ } }, { - "id": 21596, + "id": 21998, "properties": { "facing": "east", "half": "bottom", @@ -232884,7 +236627,7 @@ } }, { - "id": 21597, + "id": 21999, "properties": { "facing": "east", "half": "bottom", @@ -232893,7 +236636,7 @@ } }, { - "id": 21598, + "id": 22000, "properties": { "facing": "east", "half": "bottom", @@ -232902,7 +236645,7 @@ } }, { - "id": 21599, + "id": 22001, "properties": { "facing": "east", "half": "bottom", @@ -232911,7 +236654,7 @@ } }, { - "id": 21600, + "id": 22002, "properties": { "facing": "east", "half": "bottom", @@ -232920,7 +236663,7 @@ } }, { - "id": 21601, + "id": 22003, "properties": { "facing": "east", "half": "bottom", @@ -232929,7 +236672,7 @@ } }, { - "id": 21602, + "id": 22004, "properties": { "facing": "east", "half": "bottom", @@ -232943,7 +236686,7 @@ "states": [ { "default": true, - "id": 21516 + "id": 21918 } ] }, @@ -232951,7 +236694,7 @@ "states": [ { "default": true, - "id": 21520 + "id": 21922 } ] }, @@ -232969,21 +236712,21 @@ }, "states": [ { - "id": 21849, + "id": 22251, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21850, + "id": 22252, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21851, + "id": 22253, "properties": { "type": "bottom", "waterlogged": "true" @@ -232991,21 +236734,21 @@ }, { "default": true, - "id": 21852, + "id": 22254, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21853, + "id": 22255, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21854, + "id": 22256, "properties": { "type": "double", "waterlogged": "false" @@ -233039,7 +236782,7 @@ }, "states": [ { - "id": 21603, + "id": 22005, "properties": { "facing": "north", "half": "top", @@ -233048,7 +236791,7 @@ } }, { - "id": 21604, + "id": 22006, "properties": { "facing": "north", "half": "top", @@ -233057,7 +236800,7 @@ } }, { - "id": 21605, + "id": 22007, "properties": { "facing": "north", "half": "top", @@ -233066,7 +236809,7 @@ } }, { - "id": 21606, + "id": 22008, "properties": { "facing": "north", "half": "top", @@ -233075,7 +236818,7 @@ } }, { - "id": 21607, + "id": 22009, "properties": { "facing": "north", "half": "top", @@ -233084,7 +236827,7 @@ } }, { - "id": 21608, + "id": 22010, "properties": { "facing": "north", "half": "top", @@ -233093,7 +236836,7 @@ } }, { - "id": 21609, + "id": 22011, "properties": { "facing": "north", "half": "top", @@ -233102,7 +236845,7 @@ } }, { - "id": 21610, + "id": 22012, "properties": { "facing": "north", "half": "top", @@ -233111,7 +236854,7 @@ } }, { - "id": 21611, + "id": 22013, "properties": { "facing": "north", "half": "top", @@ -233120,7 +236863,7 @@ } }, { - "id": 21612, + "id": 22014, "properties": { "facing": "north", "half": "top", @@ -233129,7 +236872,7 @@ } }, { - "id": 21613, + "id": 22015, "properties": { "facing": "north", "half": "bottom", @@ -233139,7 +236882,7 @@ }, { "default": true, - "id": 21614, + "id": 22016, "properties": { "facing": "north", "half": "bottom", @@ -233148,7 +236891,7 @@ } }, { - "id": 21615, + "id": 22017, "properties": { "facing": "north", "half": "bottom", @@ -233157,7 +236900,7 @@ } }, { - "id": 21616, + "id": 22018, "properties": { "facing": "north", "half": "bottom", @@ -233166,7 +236909,7 @@ } }, { - "id": 21617, + "id": 22019, "properties": { "facing": "north", "half": "bottom", @@ -233175,7 +236918,7 @@ } }, { - "id": 21618, + "id": 22020, "properties": { "facing": "north", "half": "bottom", @@ -233184,7 +236927,7 @@ } }, { - "id": 21619, + "id": 22021, "properties": { "facing": "north", "half": "bottom", @@ -233193,7 +236936,7 @@ } }, { - "id": 21620, + "id": 22022, "properties": { "facing": "north", "half": "bottom", @@ -233202,7 +236945,7 @@ } }, { - "id": 21621, + "id": 22023, "properties": { "facing": "north", "half": "bottom", @@ -233211,7 +236954,7 @@ } }, { - "id": 21622, + "id": 22024, "properties": { "facing": "north", "half": "bottom", @@ -233220,7 +236963,7 @@ } }, { - "id": 21623, + "id": 22025, "properties": { "facing": "south", "half": "top", @@ -233229,7 +236972,7 @@ } }, { - "id": 21624, + "id": 22026, "properties": { "facing": "south", "half": "top", @@ -233238,7 +236981,7 @@ } }, { - "id": 21625, + "id": 22027, "properties": { "facing": "south", "half": "top", @@ -233247,7 +236990,7 @@ } }, { - "id": 21626, + "id": 22028, "properties": { "facing": "south", "half": "top", @@ -233256,7 +236999,7 @@ } }, { - "id": 21627, + "id": 22029, "properties": { "facing": "south", "half": "top", @@ -233265,7 +237008,7 @@ } }, { - "id": 21628, + "id": 22030, "properties": { "facing": "south", "half": "top", @@ -233274,7 +237017,7 @@ } }, { - "id": 21629, + "id": 22031, "properties": { "facing": "south", "half": "top", @@ -233283,7 +237026,7 @@ } }, { - "id": 21630, + "id": 22032, "properties": { "facing": "south", "half": "top", @@ -233292,7 +237035,7 @@ } }, { - "id": 21631, + "id": 22033, "properties": { "facing": "south", "half": "top", @@ -233301,7 +237044,7 @@ } }, { - "id": 21632, + "id": 22034, "properties": { "facing": "south", "half": "top", @@ -233310,7 +237053,7 @@ } }, { - "id": 21633, + "id": 22035, "properties": { "facing": "south", "half": "bottom", @@ -233319,7 +237062,7 @@ } }, { - "id": 21634, + "id": 22036, "properties": { "facing": "south", "half": "bottom", @@ -233328,7 +237071,7 @@ } }, { - "id": 21635, + "id": 22037, "properties": { "facing": "south", "half": "bottom", @@ -233337,7 +237080,7 @@ } }, { - "id": 21636, + "id": 22038, "properties": { "facing": "south", "half": "bottom", @@ -233346,7 +237089,7 @@ } }, { - "id": 21637, + "id": 22039, "properties": { "facing": "south", "half": "bottom", @@ -233355,7 +237098,7 @@ } }, { - "id": 21638, + "id": 22040, "properties": { "facing": "south", "half": "bottom", @@ -233364,7 +237107,7 @@ } }, { - "id": 21639, + "id": 22041, "properties": { "facing": "south", "half": "bottom", @@ -233373,7 +237116,7 @@ } }, { - "id": 21640, + "id": 22042, "properties": { "facing": "south", "half": "bottom", @@ -233382,7 +237125,7 @@ } }, { - "id": 21641, + "id": 22043, "properties": { "facing": "south", "half": "bottom", @@ -233391,7 +237134,7 @@ } }, { - "id": 21642, + "id": 22044, "properties": { "facing": "south", "half": "bottom", @@ -233400,7 +237143,7 @@ } }, { - "id": 21643, + "id": 22045, "properties": { "facing": "west", "half": "top", @@ -233409,7 +237152,7 @@ } }, { - "id": 21644, + "id": 22046, "properties": { "facing": "west", "half": "top", @@ -233418,7 +237161,7 @@ } }, { - "id": 21645, + "id": 22047, "properties": { "facing": "west", "half": "top", @@ -233427,7 +237170,7 @@ } }, { - "id": 21646, + "id": 22048, "properties": { "facing": "west", "half": "top", @@ -233436,7 +237179,7 @@ } }, { - "id": 21647, + "id": 22049, "properties": { "facing": "west", "half": "top", @@ -233445,7 +237188,7 @@ } }, { - "id": 21648, + "id": 22050, "properties": { "facing": "west", "half": "top", @@ -233454,7 +237197,7 @@ } }, { - "id": 21649, + "id": 22051, "properties": { "facing": "west", "half": "top", @@ -233463,7 +237206,7 @@ } }, { - "id": 21650, + "id": 22052, "properties": { "facing": "west", "half": "top", @@ -233472,7 +237215,7 @@ } }, { - "id": 21651, + "id": 22053, "properties": { "facing": "west", "half": "top", @@ -233481,7 +237224,7 @@ } }, { - "id": 21652, + "id": 22054, "properties": { "facing": "west", "half": "top", @@ -233490,7 +237233,7 @@ } }, { - "id": 21653, + "id": 22055, "properties": { "facing": "west", "half": "bottom", @@ -233499,7 +237242,7 @@ } }, { - "id": 21654, + "id": 22056, "properties": { "facing": "west", "half": "bottom", @@ -233508,7 +237251,7 @@ } }, { - "id": 21655, + "id": 22057, "properties": { "facing": "west", "half": "bottom", @@ -233517,7 +237260,7 @@ } }, { - "id": 21656, + "id": 22058, "properties": { "facing": "west", "half": "bottom", @@ -233526,7 +237269,7 @@ } }, { - "id": 21657, + "id": 22059, "properties": { "facing": "west", "half": "bottom", @@ -233535,7 +237278,7 @@ } }, { - "id": 21658, + "id": 22060, "properties": { "facing": "west", "half": "bottom", @@ -233544,7 +237287,7 @@ } }, { - "id": 21659, + "id": 22061, "properties": { "facing": "west", "half": "bottom", @@ -233553,7 +237296,7 @@ } }, { - "id": 21660, + "id": 22062, "properties": { "facing": "west", "half": "bottom", @@ -233562,7 +237305,7 @@ } }, { - "id": 21661, + "id": 22063, "properties": { "facing": "west", "half": "bottom", @@ -233571,7 +237314,7 @@ } }, { - "id": 21662, + "id": 22064, "properties": { "facing": "west", "half": "bottom", @@ -233580,7 +237323,7 @@ } }, { - "id": 21663, + "id": 22065, "properties": { "facing": "east", "half": "top", @@ -233589,7 +237332,7 @@ } }, { - "id": 21664, + "id": 22066, "properties": { "facing": "east", "half": "top", @@ -233598,7 +237341,7 @@ } }, { - "id": 21665, + "id": 22067, "properties": { "facing": "east", "half": "top", @@ -233607,7 +237350,7 @@ } }, { - "id": 21666, + "id": 22068, "properties": { "facing": "east", "half": "top", @@ -233616,7 +237359,7 @@ } }, { - "id": 21667, + "id": 22069, "properties": { "facing": "east", "half": "top", @@ -233625,7 +237368,7 @@ } }, { - "id": 21668, + "id": 22070, "properties": { "facing": "east", "half": "top", @@ -233634,7 +237377,7 @@ } }, { - "id": 21669, + "id": 22071, "properties": { "facing": "east", "half": "top", @@ -233643,7 +237386,7 @@ } }, { - "id": 21670, + "id": 22072, "properties": { "facing": "east", "half": "top", @@ -233652,7 +237395,7 @@ } }, { - "id": 21671, + "id": 22073, "properties": { "facing": "east", "half": "top", @@ -233661,7 +237404,7 @@ } }, { - "id": 21672, + "id": 22074, "properties": { "facing": "east", "half": "top", @@ -233670,7 +237413,7 @@ } }, { - "id": 21673, + "id": 22075, "properties": { "facing": "east", "half": "bottom", @@ -233679,7 +237422,7 @@ } }, { - "id": 21674, + "id": 22076, "properties": { "facing": "east", "half": "bottom", @@ -233688,7 +237431,7 @@ } }, { - "id": 21675, + "id": 22077, "properties": { "facing": "east", "half": "bottom", @@ -233697,7 +237440,7 @@ } }, { - "id": 21676, + "id": 22078, "properties": { "facing": "east", "half": "bottom", @@ -233706,7 +237449,7 @@ } }, { - "id": 21677, + "id": 22079, "properties": { "facing": "east", "half": "bottom", @@ -233715,7 +237458,7 @@ } }, { - "id": 21678, + "id": 22080, "properties": { "facing": "east", "half": "bottom", @@ -233724,7 +237467,7 @@ } }, { - "id": 21679, + "id": 22081, "properties": { "facing": "east", "half": "bottom", @@ -233733,7 +237476,7 @@ } }, { - "id": 21680, + "id": 22082, "properties": { "facing": "east", "half": "bottom", @@ -233742,7 +237485,7 @@ } }, { - "id": 21681, + "id": 22083, "properties": { "facing": "east", "half": "bottom", @@ -233751,7 +237494,7 @@ } }, { - "id": 21682, + "id": 22084, "properties": { "facing": "east", "half": "bottom", @@ -233765,7 +237508,7 @@ "states": [ { "default": true, - "id": 21162 + "id": 21564 } ] }, @@ -233773,7 +237516,7 @@ "states": [ { "default": true, - "id": 21168 + "id": 21570 } ] }, @@ -233791,21 +237534,21 @@ }, "states": [ { - "id": 21497, + "id": 21899, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21498, + "id": 21900, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21499, + "id": 21901, "properties": { "type": "bottom", "waterlogged": "true" @@ -233813,21 +237556,21 @@ }, { "default": true, - "id": 21500, + "id": 21902, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21501, + "id": 21903, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21502, + "id": 21904, "properties": { "type": "double", "waterlogged": "false" @@ -233861,7 +237604,7 @@ }, "states": [ { - "id": 21251, + "id": 21653, "properties": { "facing": "north", "half": "top", @@ -233870,7 +237613,7 @@ } }, { - "id": 21252, + "id": 21654, "properties": { "facing": "north", "half": "top", @@ -233879,7 +237622,7 @@ } }, { - "id": 21253, + "id": 21655, "properties": { "facing": "north", "half": "top", @@ -233888,7 +237631,7 @@ } }, { - "id": 21254, + "id": 21656, "properties": { "facing": "north", "half": "top", @@ -233897,7 +237640,7 @@ } }, { - "id": 21255, + "id": 21657, "properties": { "facing": "north", "half": "top", @@ -233906,7 +237649,7 @@ } }, { - "id": 21256, + "id": 21658, "properties": { "facing": "north", "half": "top", @@ -233915,7 +237658,7 @@ } }, { - "id": 21257, + "id": 21659, "properties": { "facing": "north", "half": "top", @@ -233924,7 +237667,7 @@ } }, { - "id": 21258, + "id": 21660, "properties": { "facing": "north", "half": "top", @@ -233933,7 +237676,7 @@ } }, { - "id": 21259, + "id": 21661, "properties": { "facing": "north", "half": "top", @@ -233942,7 +237685,7 @@ } }, { - "id": 21260, + "id": 21662, "properties": { "facing": "north", "half": "top", @@ -233951,7 +237694,7 @@ } }, { - "id": 21261, + "id": 21663, "properties": { "facing": "north", "half": "bottom", @@ -233961,7 +237704,7 @@ }, { "default": true, - "id": 21262, + "id": 21664, "properties": { "facing": "north", "half": "bottom", @@ -233970,7 +237713,7 @@ } }, { - "id": 21263, + "id": 21665, "properties": { "facing": "north", "half": "bottom", @@ -233979,7 +237722,7 @@ } }, { - "id": 21264, + "id": 21666, "properties": { "facing": "north", "half": "bottom", @@ -233988,7 +237731,7 @@ } }, { - "id": 21265, + "id": 21667, "properties": { "facing": "north", "half": "bottom", @@ -233997,7 +237740,7 @@ } }, { - "id": 21266, + "id": 21668, "properties": { "facing": "north", "half": "bottom", @@ -234006,7 +237749,7 @@ } }, { - "id": 21267, + "id": 21669, "properties": { "facing": "north", "half": "bottom", @@ -234015,7 +237758,7 @@ } }, { - "id": 21268, + "id": 21670, "properties": { "facing": "north", "half": "bottom", @@ -234024,7 +237767,7 @@ } }, { - "id": 21269, + "id": 21671, "properties": { "facing": "north", "half": "bottom", @@ -234033,7 +237776,7 @@ } }, { - "id": 21270, + "id": 21672, "properties": { "facing": "north", "half": "bottom", @@ -234042,7 +237785,7 @@ } }, { - "id": 21271, + "id": 21673, "properties": { "facing": "south", "half": "top", @@ -234051,7 +237794,7 @@ } }, { - "id": 21272, + "id": 21674, "properties": { "facing": "south", "half": "top", @@ -234060,7 +237803,7 @@ } }, { - "id": 21273, + "id": 21675, "properties": { "facing": "south", "half": "top", @@ -234069,7 +237812,7 @@ } }, { - "id": 21274, + "id": 21676, "properties": { "facing": "south", "half": "top", @@ -234078,7 +237821,7 @@ } }, { - "id": 21275, + "id": 21677, "properties": { "facing": "south", "half": "top", @@ -234087,7 +237830,7 @@ } }, { - "id": 21276, + "id": 21678, "properties": { "facing": "south", "half": "top", @@ -234096,7 +237839,7 @@ } }, { - "id": 21277, + "id": 21679, "properties": { "facing": "south", "half": "top", @@ -234105,7 +237848,7 @@ } }, { - "id": 21278, + "id": 21680, "properties": { "facing": "south", "half": "top", @@ -234114,7 +237857,7 @@ } }, { - "id": 21279, + "id": 21681, "properties": { "facing": "south", "half": "top", @@ -234123,7 +237866,7 @@ } }, { - "id": 21280, + "id": 21682, "properties": { "facing": "south", "half": "top", @@ -234132,7 +237875,7 @@ } }, { - "id": 21281, + "id": 21683, "properties": { "facing": "south", "half": "bottom", @@ -234141,7 +237884,7 @@ } }, { - "id": 21282, + "id": 21684, "properties": { "facing": "south", "half": "bottom", @@ -234150,7 +237893,7 @@ } }, { - "id": 21283, + "id": 21685, "properties": { "facing": "south", "half": "bottom", @@ -234159,7 +237902,7 @@ } }, { - "id": 21284, + "id": 21686, "properties": { "facing": "south", "half": "bottom", @@ -234168,7 +237911,7 @@ } }, { - "id": 21285, + "id": 21687, "properties": { "facing": "south", "half": "bottom", @@ -234177,7 +237920,7 @@ } }, { - "id": 21286, + "id": 21688, "properties": { "facing": "south", "half": "bottom", @@ -234186,7 +237929,7 @@ } }, { - "id": 21287, + "id": 21689, "properties": { "facing": "south", "half": "bottom", @@ -234195,7 +237938,7 @@ } }, { - "id": 21288, + "id": 21690, "properties": { "facing": "south", "half": "bottom", @@ -234204,7 +237947,7 @@ } }, { - "id": 21289, + "id": 21691, "properties": { "facing": "south", "half": "bottom", @@ -234213,7 +237956,7 @@ } }, { - "id": 21290, + "id": 21692, "properties": { "facing": "south", "half": "bottom", @@ -234222,7 +237965,7 @@ } }, { - "id": 21291, + "id": 21693, "properties": { "facing": "west", "half": "top", @@ -234231,7 +237974,7 @@ } }, { - "id": 21292, + "id": 21694, "properties": { "facing": "west", "half": "top", @@ -234240,7 +237983,7 @@ } }, { - "id": 21293, + "id": 21695, "properties": { "facing": "west", "half": "top", @@ -234249,7 +237992,7 @@ } }, { - "id": 21294, + "id": 21696, "properties": { "facing": "west", "half": "top", @@ -234258,7 +238001,7 @@ } }, { - "id": 21295, + "id": 21697, "properties": { "facing": "west", "half": "top", @@ -234267,7 +238010,7 @@ } }, { - "id": 21296, + "id": 21698, "properties": { "facing": "west", "half": "top", @@ -234276,7 +238019,7 @@ } }, { - "id": 21297, + "id": 21699, "properties": { "facing": "west", "half": "top", @@ -234285,7 +238028,7 @@ } }, { - "id": 21298, + "id": 21700, "properties": { "facing": "west", "half": "top", @@ -234294,7 +238037,7 @@ } }, { - "id": 21299, + "id": 21701, "properties": { "facing": "west", "half": "top", @@ -234303,7 +238046,7 @@ } }, { - "id": 21300, + "id": 21702, "properties": { "facing": "west", "half": "top", @@ -234312,7 +238055,7 @@ } }, { - "id": 21301, + "id": 21703, "properties": { "facing": "west", "half": "bottom", @@ -234321,7 +238064,7 @@ } }, { - "id": 21302, + "id": 21704, "properties": { "facing": "west", "half": "bottom", @@ -234330,7 +238073,7 @@ } }, { - "id": 21303, + "id": 21705, "properties": { "facing": "west", "half": "bottom", @@ -234339,7 +238082,7 @@ } }, { - "id": 21304, + "id": 21706, "properties": { "facing": "west", "half": "bottom", @@ -234348,7 +238091,7 @@ } }, { - "id": 21305, + "id": 21707, "properties": { "facing": "west", "half": "bottom", @@ -234357,7 +238100,7 @@ } }, { - "id": 21306, + "id": 21708, "properties": { "facing": "west", "half": "bottom", @@ -234366,7 +238109,7 @@ } }, { - "id": 21307, + "id": 21709, "properties": { "facing": "west", "half": "bottom", @@ -234375,7 +238118,7 @@ } }, { - "id": 21308, + "id": 21710, "properties": { "facing": "west", "half": "bottom", @@ -234384,7 +238127,7 @@ } }, { - "id": 21309, + "id": 21711, "properties": { "facing": "west", "half": "bottom", @@ -234393,7 +238136,7 @@ } }, { - "id": 21310, + "id": 21712, "properties": { "facing": "west", "half": "bottom", @@ -234402,7 +238145,7 @@ } }, { - "id": 21311, + "id": 21713, "properties": { "facing": "east", "half": "top", @@ -234411,7 +238154,7 @@ } }, { - "id": 21312, + "id": 21714, "properties": { "facing": "east", "half": "top", @@ -234420,7 +238163,7 @@ } }, { - "id": 21313, + "id": 21715, "properties": { "facing": "east", "half": "top", @@ -234429,7 +238172,7 @@ } }, { - "id": 21314, + "id": 21716, "properties": { "facing": "east", "half": "top", @@ -234438,7 +238181,7 @@ } }, { - "id": 21315, + "id": 21717, "properties": { "facing": "east", "half": "top", @@ -234447,7 +238190,7 @@ } }, { - "id": 21316, + "id": 21718, "properties": { "facing": "east", "half": "top", @@ -234456,7 +238199,7 @@ } }, { - "id": 21317, + "id": 21719, "properties": { "facing": "east", "half": "top", @@ -234465,7 +238208,7 @@ } }, { - "id": 21318, + "id": 21720, "properties": { "facing": "east", "half": "top", @@ -234474,7 +238217,7 @@ } }, { - "id": 21319, + "id": 21721, "properties": { "facing": "east", "half": "top", @@ -234483,7 +238226,7 @@ } }, { - "id": 21320, + "id": 21722, "properties": { "facing": "east", "half": "top", @@ -234492,7 +238235,7 @@ } }, { - "id": 21321, + "id": 21723, "properties": { "facing": "east", "half": "bottom", @@ -234501,7 +238244,7 @@ } }, { - "id": 21322, + "id": 21724, "properties": { "facing": "east", "half": "bottom", @@ -234510,7 +238253,7 @@ } }, { - "id": 21323, + "id": 21725, "properties": { "facing": "east", "half": "bottom", @@ -234519,7 +238262,7 @@ } }, { - "id": 21324, + "id": 21726, "properties": { "facing": "east", "half": "bottom", @@ -234528,7 +238271,7 @@ } }, { - "id": 21325, + "id": 21727, "properties": { "facing": "east", "half": "bottom", @@ -234537,7 +238280,7 @@ } }, { - "id": 21326, + "id": 21728, "properties": { "facing": "east", "half": "bottom", @@ -234546,7 +238289,7 @@ } }, { - "id": 21327, + "id": 21729, "properties": { "facing": "east", "half": "bottom", @@ -234555,7 +238298,7 @@ } }, { - "id": 21328, + "id": 21730, "properties": { "facing": "east", "half": "bottom", @@ -234564,7 +238307,7 @@ } }, { - "id": 21329, + "id": 21731, "properties": { "facing": "east", "half": "bottom", @@ -234573,7 +238316,7 @@ } }, { - "id": 21330, + "id": 21732, "properties": { "facing": "east", "half": "bottom", @@ -234617,157 +238360,157 @@ "states": [ { "default": true, - "id": 18452, + "id": 18470, "properties": { "age": "0" } }, { - "id": 18453, + "id": 18471, "properties": { "age": "1" } }, { - "id": 18454, + "id": 18472, "properties": { "age": "2" } }, { - "id": 18455, + "id": 18473, "properties": { "age": "3" } }, { - "id": 18456, + "id": 18474, "properties": { "age": "4" } }, { - "id": 18457, + "id": 18475, "properties": { "age": "5" } }, { - "id": 18458, + "id": 18476, "properties": { "age": "6" } }, { - "id": 18459, + "id": 18477, "properties": { "age": "7" } }, { - "id": 18460, + "id": 18478, "properties": { "age": "8" } }, { - "id": 18461, + "id": 18479, "properties": { "age": "9" } }, { - "id": 18462, + "id": 18480, "properties": { "age": "10" } }, { - "id": 18463, + "id": 18481, "properties": { "age": "11" } }, { - "id": 18464, + "id": 18482, "properties": { "age": "12" } }, { - "id": 18465, + "id": 18483, "properties": { "age": "13" } }, { - "id": 18466, + "id": 18484, "properties": { "age": "14" } }, { - "id": 18467, + "id": 18485, "properties": { "age": "15" } }, { - "id": 18468, + "id": 18486, "properties": { "age": "16" } }, { - "id": 18469, + "id": 18487, "properties": { "age": "17" } }, { - "id": 18470, + "id": 18488, "properties": { "age": "18" } }, { - "id": 18471, + "id": 18489, "properties": { "age": "19" } }, { - "id": 18472, + "id": 18490, "properties": { "age": "20" } }, { - "id": 18473, + "id": 18491, "properties": { "age": "21" } }, { - "id": 18474, + "id": 18492, "properties": { "age": "22" } }, { - "id": 18475, + "id": 18493, "properties": { "age": "23" } }, { - "id": 18476, + "id": 18494, "properties": { "age": "24" } }, { - "id": 18477, + "id": 18495, "properties": { "age": "25" } @@ -234778,7 +238521,7 @@ "states": [ { "default": true, - "id": 18478 + "id": 18496 } ] }, @@ -234786,7 +238529,7 @@ "states": [ { "default": true, - "id": 514 + "id": 518 } ] }, @@ -234806,49 +238549,49 @@ "states": [ { "default": true, - "id": 4274, + "id": 4278, "properties": { "age": "0" } }, { - "id": 4275, + "id": 4279, "properties": { "age": "1" } }, { - "id": 4276, + "id": 4280, "properties": { "age": "2" } }, { - "id": 4277, + "id": 4281, "properties": { "age": "3" } }, { - "id": 4278, + "id": 4282, "properties": { "age": "4" } }, { - "id": 4279, + "id": 4283, "properties": { "age": "5" } }, { - "id": 4280, + "id": 4284, "properties": { "age": "6" } }, { - "id": 4281, + "id": 4285, "properties": { "age": "7" } @@ -234879,97 +238622,97 @@ "states": [ { "default": true, - "id": 10614, + "id": 10618, "properties": { "rotation": "0" } }, { - "id": 10615, + "id": 10619, "properties": { "rotation": "1" } }, { - "id": 10616, + "id": 10620, "properties": { "rotation": "2" } }, { - "id": 10617, + "id": 10621, "properties": { "rotation": "3" } }, { - "id": 10618, + "id": 10622, "properties": { "rotation": "4" } }, { - "id": 10619, + "id": 10623, "properties": { "rotation": "5" } }, { - "id": 10620, + "id": 10624, "properties": { "rotation": "6" } }, { - "id": 10621, + "id": 10625, "properties": { "rotation": "7" } }, { - "id": 10622, + "id": 10626, "properties": { "rotation": "8" } }, { - "id": 10623, + "id": 10627, "properties": { "rotation": "9" } }, { - "id": 10624, + "id": 10628, "properties": { "rotation": "10" } }, { - "id": 10625, + "id": 10629, "properties": { "rotation": "11" } }, { - "id": 10626, + "id": 10630, "properties": { "rotation": "12" } }, { - "id": 10627, + "id": 10631, "properties": { "rotation": "13" } }, { - "id": 10628, + "id": 10632, "properties": { "rotation": "14" } }, { - "id": 10629, + "id": 10633, "properties": { "rotation": "15" } @@ -234995,7 +238738,7 @@ }, "states": [ { - "id": 1684, + "id": 1688, "properties": { "facing": "north", "occupied": "true", @@ -235003,7 +238746,7 @@ } }, { - "id": 1685, + "id": 1689, "properties": { "facing": "north", "occupied": "true", @@ -235011,7 +238754,7 @@ } }, { - "id": 1686, + "id": 1690, "properties": { "facing": "north", "occupied": "false", @@ -235020,49 +238763,17 @@ }, { "default": true, - "id": 1687, + "id": 1691, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1688, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1689, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1690, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1691, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1692, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -235070,7 +238781,7 @@ { "id": 1693, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -235078,7 +238789,7 @@ { "id": 1694, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -235086,7 +238797,7 @@ { "id": 1695, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -235094,7 +238805,7 @@ { "id": 1696, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -235102,7 +238813,7 @@ { "id": 1697, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -235110,13 +238821,45 @@ { "id": 1698, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1699, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1700, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1701, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1702, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1703, "properties": { "facing": "east", "occupied": "false", @@ -235144,7 +238887,7 @@ }, "states": [ { - "id": 20582, + "id": 20600, "properties": { "candles": "1", "lit": "true", @@ -235152,7 +238895,7 @@ } }, { - "id": 20583, + "id": 20601, "properties": { "candles": "1", "lit": "true", @@ -235160,7 +238903,7 @@ } }, { - "id": 20584, + "id": 20602, "properties": { "candles": "1", "lit": "false", @@ -235169,7 +238912,7 @@ }, { "default": true, - "id": 20585, + "id": 20603, "properties": { "candles": "1", "lit": "false", @@ -235177,7 +238920,7 @@ } }, { - "id": 20586, + "id": 20604, "properties": { "candles": "2", "lit": "true", @@ -235185,7 +238928,7 @@ } }, { - "id": 20587, + "id": 20605, "properties": { "candles": "2", "lit": "true", @@ -235193,7 +238936,7 @@ } }, { - "id": 20588, + "id": 20606, "properties": { "candles": "2", "lit": "false", @@ -235201,7 +238944,7 @@ } }, { - "id": 20589, + "id": 20607, "properties": { "candles": "2", "lit": "false", @@ -235209,7 +238952,7 @@ } }, { - "id": 20590, + "id": 20608, "properties": { "candles": "3", "lit": "true", @@ -235217,7 +238960,7 @@ } }, { - "id": 20591, + "id": 20609, "properties": { "candles": "3", "lit": "true", @@ -235225,7 +238968,7 @@ } }, { - "id": 20592, + "id": 20610, "properties": { "candles": "3", "lit": "false", @@ -235233,7 +238976,7 @@ } }, { - "id": 20593, + "id": 20611, "properties": { "candles": "3", "lit": "false", @@ -235241,7 +238984,7 @@ } }, { - "id": 20594, + "id": 20612, "properties": { "candles": "4", "lit": "true", @@ -235249,7 +238992,7 @@ } }, { - "id": 20595, + "id": 20613, "properties": { "candles": "4", "lit": "true", @@ -235257,7 +239000,7 @@ } }, { - "id": 20596, + "id": 20614, "properties": { "candles": "4", "lit": "false", @@ -235265,7 +239008,7 @@ } }, { - "id": 20597, + "id": 20615, "properties": { "candles": "4", "lit": "false", @@ -235283,14 +239026,14 @@ }, "states": [ { - "id": 20840, + "id": 20858, "properties": { "lit": "true" } }, { "default": true, - "id": 20841, + "id": 20859, "properties": { "lit": "false" } @@ -235301,7 +239044,7 @@ "states": [ { "default": true, - "id": 10583 + "id": 10587 } ] }, @@ -235309,7 +239052,7 @@ "states": [ { "default": true, - "id": 12572 + "id": 12587 } ] }, @@ -235317,7 +239060,7 @@ "states": [ { "default": true, - "id": 12588 + "id": 12603 } ] }, @@ -235333,25 +239076,25 @@ "states": [ { "default": true, - "id": 12508, + "id": 12523, "properties": { "facing": "north" } }, { - "id": 12509, + "id": 12524, "properties": { "facing": "south" } }, { - "id": 12510, + "id": 12525, "properties": { "facing": "west" } }, { - "id": 12511, + "id": 12526, "properties": { "facing": "east" } @@ -235371,38 +239114,38 @@ }, "states": [ { - "id": 12412, + "id": 12427, "properties": { "facing": "north" } }, { - "id": 12413, + "id": 12428, "properties": { "facing": "east" } }, { - "id": 12414, + "id": 12429, "properties": { "facing": "south" } }, { - "id": 12415, + "id": 12430, "properties": { "facing": "west" } }, { "default": true, - "id": 12416, + "id": 12431, "properties": { "facing": "up" } }, { - "id": 12417, + "id": 12432, "properties": { "facing": "down" } @@ -235413,7 +239156,7 @@ "states": [ { "default": true, - "id": 5942 + "id": 5946 } ] }, @@ -235441,52 +239184,12 @@ ] }, "states": [ - { - "id": 9228, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9229, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9230, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9231, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9232, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -235496,7 +239199,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -235506,7 +239209,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -235516,7 +239219,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -235525,8 +239228,8 @@ "id": 9236, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -235535,8 +239238,8 @@ "id": 9237, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -235545,8 +239248,8 @@ "id": 9238, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -235555,8 +239258,8 @@ "id": 9239, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -235566,7 +239269,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -235576,7 +239279,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -235586,7 +239289,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -235596,7 +239299,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -235604,9 +239307,9 @@ { "id": 9244, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -235614,9 +239317,9 @@ { "id": 9245, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -235624,9 +239327,9 @@ { "id": 9246, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -235634,9 +239337,9 @@ { "id": 9247, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -235646,7 +239349,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -235656,7 +239359,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -235666,7 +239369,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -235676,7 +239379,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -235685,8 +239388,8 @@ "id": 9252, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -235695,8 +239398,8 @@ "id": 9253, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -235705,8 +239408,8 @@ "id": 9254, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -235715,8 +239418,8 @@ "id": 9255, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -235726,7 +239429,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -235736,13 +239439,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9258, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9259, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9260, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9261, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9262, "properties": { "east": "false", "north": "false", @@ -235753,7 +239496,7 @@ }, { "default": true, - "id": 9259, + "id": 9263, "properties": { "east": "false", "north": "false", @@ -235768,7 +239511,7 @@ "states": [ { "default": true, - "id": 9212 + "id": 9216 } ] }, @@ -235776,7 +239519,7 @@ "states": [ { "default": true, - "id": 2079 + "id": 2083 } ] }, @@ -235792,25 +239535,25 @@ "states": [ { "default": true, - "id": 10870, + "id": 10874, "properties": { "facing": "north" } }, { - "id": 10871, + "id": 10875, "properties": { "facing": "south" } }, { - "id": 10872, + "id": 10876, "properties": { "facing": "west" } }, { - "id": 10873, + "id": 10877, "properties": { "facing": "east" } @@ -235821,7 +239564,7 @@ "states": [ { "default": true, - "id": 2043 + "id": 2047 } ] }, @@ -235829,7 +239572,7 @@ "states": [ { "default": true, - "id": 2083 + "id": 2087 } ] }, @@ -235857,97 +239600,97 @@ "states": [ { "default": true, - "id": 8843, + "id": 8847, "properties": { "rotation": "0" } }, { - "id": 8844, + "id": 8848, "properties": { "rotation": "1" } }, { - "id": 8845, + "id": 8849, "properties": { "rotation": "2" } }, { - "id": 8846, + "id": 8850, "properties": { "rotation": "3" } }, { - "id": 8847, + "id": 8851, "properties": { "rotation": "4" } }, { - "id": 8848, + "id": 8852, "properties": { "rotation": "5" } }, { - "id": 8849, + "id": 8853, "properties": { "rotation": "6" } }, { - "id": 8850, + "id": 8854, "properties": { "rotation": "7" } }, { - "id": 8851, + "id": 8855, "properties": { "rotation": "8" } }, { - "id": 8852, + "id": 8856, "properties": { "rotation": "9" } }, { - "id": 8853, + "id": 8857, "properties": { "rotation": "10" } }, { - "id": 8854, + "id": 8858, "properties": { "rotation": "11" } }, { - "id": 8855, + "id": 8859, "properties": { "rotation": "12" } }, { - "id": 8856, + "id": 8860, "properties": { "rotation": "13" } }, { - "id": 8857, + "id": 8861, "properties": { "rotation": "14" } }, { - "id": 8858, + "id": 8862, "properties": { "rotation": "15" } @@ -235966,25 +239709,25 @@ "states": [ { "default": true, - "id": 8859, + "id": 8863, "properties": { "facing": "north" } }, { - "id": 8860, + "id": 8864, "properties": { "facing": "south" } }, { - "id": 8861, + "id": 8865, "properties": { "facing": "west" } }, { - "id": 8862, + "id": 8866, "properties": { "facing": "east" } @@ -236015,97 +239758,97 @@ "states": [ { "default": true, - "id": 10678, + "id": 10682, "properties": { "rotation": "0" } }, { - "id": 10679, + "id": 10683, "properties": { "rotation": "1" } }, { - "id": 10680, + "id": 10684, "properties": { "rotation": "2" } }, { - "id": 10681, + "id": 10685, "properties": { "rotation": "3" } }, { - "id": 10682, + "id": 10686, "properties": { "rotation": "4" } }, { - "id": 10683, + "id": 10687, "properties": { "rotation": "5" } }, { - "id": 10684, + "id": 10688, "properties": { "rotation": "6" } }, { - "id": 10685, + "id": 10689, "properties": { "rotation": "7" } }, { - "id": 10686, + "id": 10690, "properties": { "rotation": "8" } }, { - "id": 10687, + "id": 10691, "properties": { "rotation": "9" } }, { - "id": 10688, + "id": 10692, "properties": { "rotation": "10" } }, { - "id": 10689, + "id": 10693, "properties": { "rotation": "11" } }, { - "id": 10690, + "id": 10694, "properties": { "rotation": "12" } }, { - "id": 10691, + "id": 10695, "properties": { "rotation": "13" } }, { - "id": 10692, + "id": 10696, "properties": { "rotation": "14" } }, { - "id": 10693, + "id": 10697, "properties": { "rotation": "15" } @@ -236131,7 +239874,7 @@ }, "states": [ { - "id": 1748, + "id": 1752, "properties": { "facing": "north", "occupied": "true", @@ -236139,7 +239882,7 @@ } }, { - "id": 1749, + "id": 1753, "properties": { "facing": "north", "occupied": "true", @@ -236147,7 +239890,7 @@ } }, { - "id": 1750, + "id": 1754, "properties": { "facing": "north", "occupied": "false", @@ -236156,49 +239899,17 @@ }, { "default": true, - "id": 1751, + "id": 1755, "properties": { "facing": "north", "occupied": "false", "part": "foot" } }, - { - "id": 1752, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1753, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1754, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1755, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, { "id": 1756, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "head" } @@ -236206,7 +239917,7 @@ { "id": 1757, "properties": { - "facing": "west", + "facing": "south", "occupied": "true", "part": "foot" } @@ -236214,7 +239925,7 @@ { "id": 1758, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "head" } @@ -236222,7 +239933,7 @@ { "id": 1759, "properties": { - "facing": "west", + "facing": "south", "occupied": "false", "part": "foot" } @@ -236230,7 +239941,7 @@ { "id": 1760, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "head" } @@ -236238,7 +239949,7 @@ { "id": 1761, "properties": { - "facing": "east", + "facing": "west", "occupied": "true", "part": "foot" } @@ -236246,13 +239957,45 @@ { "id": 1762, "properties": { - "facing": "east", + "facing": "west", "occupied": "false", "part": "head" } }, { "id": 1763, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1764, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1765, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1766, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1767, "properties": { "facing": "east", "occupied": "false", @@ -236280,7 +240023,7 @@ }, "states": [ { - "id": 20646, + "id": 20664, "properties": { "candles": "1", "lit": "true", @@ -236288,7 +240031,7 @@ } }, { - "id": 20647, + "id": 20665, "properties": { "candles": "1", "lit": "true", @@ -236296,7 +240039,7 @@ } }, { - "id": 20648, + "id": 20666, "properties": { "candles": "1", "lit": "false", @@ -236305,7 +240048,7 @@ }, { "default": true, - "id": 20649, + "id": 20667, "properties": { "candles": "1", "lit": "false", @@ -236313,7 +240056,7 @@ } }, { - "id": 20650, + "id": 20668, "properties": { "candles": "2", "lit": "true", @@ -236321,7 +240064,7 @@ } }, { - "id": 20651, + "id": 20669, "properties": { "candles": "2", "lit": "true", @@ -236329,7 +240072,7 @@ } }, { - "id": 20652, + "id": 20670, "properties": { "candles": "2", "lit": "false", @@ -236337,7 +240080,7 @@ } }, { - "id": 20653, + "id": 20671, "properties": { "candles": "2", "lit": "false", @@ -236345,7 +240088,7 @@ } }, { - "id": 20654, + "id": 20672, "properties": { "candles": "3", "lit": "true", @@ -236353,7 +240096,7 @@ } }, { - "id": 20655, + "id": 20673, "properties": { "candles": "3", "lit": "true", @@ -236361,7 +240104,7 @@ } }, { - "id": 20656, + "id": 20674, "properties": { "candles": "3", "lit": "false", @@ -236369,7 +240112,7 @@ } }, { - "id": 20657, + "id": 20675, "properties": { "candles": "3", "lit": "false", @@ -236377,7 +240120,7 @@ } }, { - "id": 20658, + "id": 20676, "properties": { "candles": "4", "lit": "true", @@ -236385,7 +240128,7 @@ } }, { - "id": 20659, + "id": 20677, "properties": { "candles": "4", "lit": "true", @@ -236393,7 +240136,7 @@ } }, { - "id": 20660, + "id": 20678, "properties": { "candles": "4", "lit": "false", @@ -236401,7 +240144,7 @@ } }, { - "id": 20661, + "id": 20679, "properties": { "candles": "4", "lit": "false", @@ -236419,14 +240162,14 @@ }, "states": [ { - "id": 20848, + "id": 20866, "properties": { "lit": "true" } }, { "default": true, - "id": 20849, + "id": 20867, "properties": { "lit": "false" } @@ -236437,7 +240180,7 @@ "states": [ { "default": true, - "id": 10587 + "id": 10591 } ] }, @@ -236445,7 +240188,7 @@ "states": [ { "default": true, - "id": 12576 + "id": 12591 } ] }, @@ -236453,7 +240196,7 @@ "states": [ { "default": true, - "id": 12592 + "id": 12607 } ] }, @@ -236469,25 +240212,25 @@ "states": [ { "default": true, - "id": 12524, + "id": 12539, "properties": { "facing": "north" } }, { - "id": 12525, + "id": 12540, "properties": { "facing": "south" } }, { - "id": 12526, + "id": 12541, "properties": { "facing": "west" } }, { - "id": 12527, + "id": 12542, "properties": { "facing": "east" } @@ -236507,38 +240250,38 @@ }, "states": [ { - "id": 12436, + "id": 12451, "properties": { "facing": "north" } }, { - "id": 12437, + "id": 12452, "properties": { "facing": "east" } }, { - "id": 12438, + "id": 12453, "properties": { "facing": "south" } }, { - "id": 12439, + "id": 12454, "properties": { "facing": "west" } }, { "default": true, - "id": 12440, + "id": 12455, "properties": { "facing": "up" } }, { - "id": 12441, + "id": 12456, "properties": { "facing": "down" } @@ -236549,7 +240292,7 @@ "states": [ { "default": true, - "id": 5946 + "id": 5950 } ] }, @@ -236577,52 +240320,12 @@ ] }, "states": [ - { - "id": 9356, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9357, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9358, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9359, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, { "id": 9360, "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -236632,7 +240335,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -236642,7 +240345,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -236652,7 +240355,7 @@ "properties": { "east": "true", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -236661,8 +240364,8 @@ "id": 9364, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -236671,8 +240374,8 @@ "id": 9365, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -236681,8 +240384,8 @@ "id": 9366, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -236691,8 +240394,8 @@ "id": 9367, "properties": { "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -236702,7 +240405,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -236712,7 +240415,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -236722,7 +240425,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -236732,7 +240435,7 @@ "properties": { "east": "true", "north": "false", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -236740,9 +240443,9 @@ { "id": 9372, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "true" } @@ -236750,9 +240453,9 @@ { "id": 9373, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", "west": "false" } @@ -236760,9 +240463,9 @@ { "id": 9374, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "true" } @@ -236770,9 +240473,9 @@ { "id": 9375, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", "west": "false" } @@ -236782,7 +240485,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -236792,7 +240495,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } @@ -236802,7 +240505,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "true" } @@ -236812,7 +240515,7 @@ "properties": { "east": "false", "north": "true", - "south": "false", + "south": "true", "waterlogged": "false", "west": "false" } @@ -236821,8 +240524,8 @@ "id": 9380, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "true" } @@ -236831,8 +240534,8 @@ "id": 9381, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "true", "west": "false" } @@ -236841,8 +240544,8 @@ "id": 9382, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "true" } @@ -236851,8 +240554,8 @@ "id": 9383, "properties": { "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "waterlogged": "false", "west": "false" } @@ -236862,7 +240565,7 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "true" } @@ -236872,13 +240575,53 @@ "properties": { "east": "false", "north": "false", - "south": "false", + "south": "true", "waterlogged": "true", "west": "false" } }, { "id": 9386, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9387, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9388, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9389, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9390, "properties": { "east": "false", "north": "false", @@ -236889,7 +240632,7 @@ }, { "default": true, - "id": 9387, + "id": 9391, "properties": { "east": "false", "north": "false", @@ -236904,7 +240647,7 @@ "states": [ { "default": true, - "id": 9216 + "id": 9220 } ] }, @@ -236920,25 +240663,25 @@ "states": [ { "default": true, - "id": 10886, + "id": 10890, "properties": { "facing": "north" } }, { - "id": 10887, + "id": 10891, "properties": { "facing": "south" } }, { - "id": 10888, + "id": 10892, "properties": { "facing": "west" } }, { - "id": 10889, + "id": 10893, "properties": { "facing": "east" } @@ -236949,7 +240692,7 @@ "states": [ { "default": true, - "id": 2047 + "id": 2051 } ] }, @@ -236977,97 +240720,97 @@ "states": [ { "default": true, - "id": 8863, + "id": 8867, "properties": { "rotation": "0" } }, { - "id": 8864, + "id": 8868, "properties": { "rotation": "1" } }, { - "id": 8865, + "id": 8869, "properties": { "rotation": "2" } }, { - "id": 8866, + "id": 8870, "properties": { "rotation": "3" } }, { - "id": 8867, + "id": 8871, "properties": { "rotation": "4" } }, { - "id": 8868, + "id": 8872, "properties": { "rotation": "5" } }, { - "id": 8869, + "id": 8873, "properties": { "rotation": "6" } }, { - "id": 8870, + "id": 8874, "properties": { "rotation": "7" } }, { - "id": 8871, + "id": 8875, "properties": { "rotation": "8" } }, { - "id": 8872, + "id": 8876, "properties": { "rotation": "9" } }, { - "id": 8873, + "id": 8877, "properties": { "rotation": "10" } }, { - "id": 8874, + "id": 8878, "properties": { "rotation": "11" } }, { - "id": 8875, + "id": 8879, "properties": { "rotation": "12" } }, { - "id": 8876, + "id": 8880, "properties": { "rotation": "13" } }, { - "id": 8877, + "id": 8881, "properties": { "rotation": "14" } }, { - "id": 8878, + "id": 8882, "properties": { "rotation": "15" } @@ -237086,25 +240829,25 @@ "states": [ { "default": true, - "id": 8879, + "id": 8883, "properties": { "facing": "north" } }, { - "id": 8880, + "id": 8884, "properties": { "facing": "south" } }, { - "id": 8881, + "id": 8885, "properties": { "facing": "west" } }, { - "id": 8882, + "id": 8886, "properties": { "facing": "east" } diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json index 39d7bc9..5a34f06 100644 --- a/src/main/resources/dimension_registry.json +++ b/src/main/resources/dimension_registry.json @@ -411,57 +411,6 @@ } } } - }, - { - "name": { - "type": "StringTag", - "value": "minecraft:raw" - }, - "id": { - "type": "IntTag", - "value": 7 - }, - "element": { - "type": "CompoundTag", - "value": { - "chat": { - "type": "CompoundTag", - "value": { - "translation_key": { - "type": "StringTag", - "value": "%s" - }, - "parameters": { - "type": "ListTag", - "value": { - "type": "StringTag", - "list": [ - "content" - ] - } - } - } - }, - "narration": { - "type": "CompoundTag", - "value": { - "translation_key": { - "type": "StringTag", - "value": "%s" - }, - "parameters": { - "type": "ListTag", - "value": { - "type": "StringTag", - "list": [ - "content" - ] - } - } - } - } - } - } } ] } @@ -579,12 +528,76 @@ { "name": { "type": "StringTag", - "value": "minecraft:rib" + "value": "minecraft:host" }, "id": { "type": "IntTag", "value": 3 }, + "element": { + "type": "CompoundTag", + "value": { + "template_item": { + "type": "StringTag", + "value": "minecraft:host_armor_trim_smithing_template" + }, + "description": { + "type": "CompoundTag", + "value": { + "translate": { + "type": "StringTag", + "value": "trim_pattern.minecraft.host" + } + } + }, + "asset_id": { + "type": "StringTag", + "value": "minecraft:host" + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:raiser" + }, + "id": { + "type": "IntTag", + "value": 4 + }, + "element": { + "type": "CompoundTag", + "value": { + "template_item": { + "type": "StringTag", + "value": "minecraft:raiser_armor_trim_smithing_template" + }, + "description": { + "type": "CompoundTag", + "value": { + "translate": { + "type": "StringTag", + "value": "trim_pattern.minecraft.raiser" + } + } + }, + "asset_id": { + "type": "StringTag", + "value": "minecraft:raiser" + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:rib" + }, + "id": { + "type": "IntTag", + "value": 5 + }, "element": { "type": "CompoundTag", "value": { @@ -615,7 +628,7 @@ }, "id": { "type": "IntTag", - "value": 4 + "value": 6 }, "element": { "type": "CompoundTag", @@ -640,6 +653,70 @@ } } }, + { + "name": { + "type": "StringTag", + "value": "minecraft:shaper" + }, + "id": { + "type": "IntTag", + "value": 7 + }, + "element": { + "type": "CompoundTag", + "value": { + "template_item": { + "type": "StringTag", + "value": "minecraft:shaper_armor_trim_smithing_template" + }, + "description": { + "type": "CompoundTag", + "value": { + "translate": { + "type": "StringTag", + "value": "trim_pattern.minecraft.shaper" + } + } + }, + "asset_id": { + "type": "StringTag", + "value": "minecraft:shaper" + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:silence" + }, + "id": { + "type": "IntTag", + "value": 8 + }, + "element": { + "type": "CompoundTag", + "value": { + "template_item": { + "type": "StringTag", + "value": "minecraft:silence_armor_trim_smithing_template" + }, + "description": { + "type": "CompoundTag", + "value": { + "translate": { + "type": "StringTag", + "value": "trim_pattern.minecraft.silence" + } + } + }, + "asset_id": { + "type": "StringTag", + "value": "minecraft:silence" + } + } + } + }, { "name": { "type": "StringTag", @@ -647,7 +724,7 @@ }, "id": { "type": "IntTag", - "value": 5 + "value": 9 }, "element": { "type": "CompoundTag", @@ -679,7 +756,7 @@ }, "id": { "type": "IntTag", - "value": 6 + "value": 10 }, "element": { "type": "CompoundTag", @@ -711,7 +788,7 @@ }, "id": { "type": "IntTag", - "value": 7 + "value": 11 }, "element": { "type": "CompoundTag", @@ -743,7 +820,7 @@ }, "id": { "type": "IntTag", - "value": 8 + "value": 12 }, "element": { "type": "CompoundTag", @@ -775,7 +852,7 @@ }, "id": { "type": "IntTag", - "value": 9 + "value": 13 }, "element": { "type": "CompoundTag", @@ -800,6 +877,38 @@ } } }, + { + "name": { + "type": "StringTag", + "value": "minecraft:wayfinder" + }, + "id": { + "type": "IntTag", + "value": 14 + }, + "element": { + "type": "CompoundTag", + "value": { + "template_item": { + "type": "StringTag", + "value": "minecraft:wayfinder_armor_trim_smithing_template" + }, + "description": { + "type": "CompoundTag", + "value": { + "translate": { + "type": "StringTag", + "value": "trim_pattern.minecraft.wayfinder" + } + } + }, + "asset_id": { + "type": "StringTag", + "value": "minecraft:wayfinder" + } + } + } + }, { "name": { "type": "StringTag", @@ -807,7 +916,7 @@ }, "id": { "type": "IntTag", - "value": 10 + "value": 15 }, "element": { "type": "CompoundTag", @@ -1415,6 +1524,10 @@ "type": "FloatTag", "value": 0 }, + "effects": { + "type": "StringTag", + "value": "drowning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1422,10 +1535,6 @@ "message_id": { "type": "StringTag", "value": "drown" - }, - "effects": { - "type": "StringTag", - "value": "drowning" } } } @@ -1612,6 +1721,10 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "burning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1619,10 +1732,6 @@ "message_id": { "type": "StringTag", "value": "fireball" - }, - "effects": { - "type": "StringTag", - "value": "burning" } } } @@ -1697,6 +1806,10 @@ "type": "FloatTag", "value": 0 }, + "effects": { + "type": "StringTag", + "value": "freezing" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1704,10 +1817,6 @@ "message_id": { "type": "StringTag", "value": "freeze" - }, - "effects": { - "type": "StringTag", - "value": "freezing" } } } @@ -1742,7 +1851,7 @@ { "name": { "type": "StringTag", - "value": "minecraft:hot_floor" + "value": "minecraft:generic_kill" }, "id": { "type": "IntTag", @@ -1753,7 +1862,7 @@ "value": { "exhaustion": { "type": "FloatTag", - "value": 0.1 + "value": 0 }, "scaling": { "type": "StringTag", @@ -1761,11 +1870,7 @@ }, "message_id": { "type": "StringTag", - "value": "hotFloor" - }, - "effects": { - "type": "StringTag", - "value": "burning" + "value": "genericKill" } } } @@ -1773,7 +1878,7 @@ { "name": { "type": "StringTag", - "value": "minecraft:in_fire" + "value": "minecraft:hot_floor" }, "id": { "type": "IntTag", @@ -1786,6 +1891,41 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "burning" + }, + "scaling": { + "type": "StringTag", + "value": "when_caused_by_living_non_player" + }, + "message_id": { + "type": "StringTag", + "value": "hotFloor" + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:in_fire" + }, + "id": { + "type": "IntTag", + "value": 19 + }, + "element": { + "type": "CompoundTag", + "value": { + "exhaustion": { + "type": "FloatTag", + "value": 0.1 + }, + "effects": { + "type": "StringTag", + "value": "burning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1793,10 +1933,6 @@ "message_id": { "type": "StringTag", "value": "inFire" - }, - "effects": { - "type": "StringTag", - "value": "burning" } } } @@ -1808,7 +1944,7 @@ }, "id": { "type": "IntTag", - "value": 19 + "value": 20 }, "element": { "type": "CompoundTag", @@ -1835,7 +1971,7 @@ }, "id": { "type": "IntTag", - "value": 20 + "value": 21 }, "element": { "type": "CompoundTag", @@ -1862,7 +1998,7 @@ }, "id": { "type": "IntTag", - "value": 21 + "value": 22 }, "element": { "type": "CompoundTag", @@ -1871,6 +2007,10 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "burning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1878,10 +2018,6 @@ "message_id": { "type": "StringTag", "value": "lava" - }, - "effects": { - "type": "StringTag", - "value": "burning" } } } @@ -1893,7 +2029,7 @@ }, "id": { "type": "IntTag", - "value": 22 + "value": 23 }, "element": { "type": "CompoundTag", @@ -1920,7 +2056,7 @@ }, "id": { "type": "IntTag", - "value": 23 + "value": 24 }, "element": { "type": "CompoundTag", @@ -1947,7 +2083,7 @@ }, "id": { "type": "IntTag", - "value": 24 + "value": 25 }, "element": { "type": "CompoundTag", @@ -1974,7 +2110,7 @@ }, "id": { "type": "IntTag", - "value": 25 + "value": 26 }, "element": { "type": "CompoundTag", @@ -2001,7 +2137,7 @@ }, "id": { "type": "IntTag", - "value": 26 + "value": 27 }, "element": { "type": "CompoundTag", @@ -2028,7 +2164,7 @@ }, "id": { "type": "IntTag", - "value": 27 + "value": 28 }, "element": { "type": "CompoundTag", @@ -2037,6 +2173,10 @@ "type": "FloatTag", "value": 0 }, + "effects": { + "type": "StringTag", + "value": "burning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2044,10 +2184,6 @@ "message_id": { "type": "StringTag", "value": "onFire" - }, - "effects": { - "type": "StringTag", - "value": "burning" } } } @@ -2059,7 +2195,7 @@ }, "id": { "type": "IntTag", - "value": 28 + "value": 29 }, "element": { "type": "CompoundTag", @@ -2079,6 +2215,33 @@ } } }, + { + "name": { + "type": "StringTag", + "value": "minecraft:outside_border" + }, + "id": { + "type": "IntTag", + "value": 30 + }, + "element": { + "type": "CompoundTag", + "value": { + "exhaustion": { + "type": "FloatTag", + "value": 0 + }, + "scaling": { + "type": "StringTag", + "value": "when_caused_by_living_non_player" + }, + "message_id": { + "type": "StringTag", + "value": "outsideBorder" + } + } + } + }, { "name": { "type": "StringTag", @@ -2086,7 +2249,7 @@ }, "id": { "type": "IntTag", - "value": 29 + "value": 31 }, "element": { "type": "CompoundTag", @@ -2113,7 +2276,7 @@ }, "id": { "type": "IntTag", - "value": 30 + "value": 32 }, "element": { "type": "CompoundTag", @@ -2140,7 +2303,7 @@ }, "id": { "type": "IntTag", - "value": 31 + "value": 33 }, "element": { "type": "CompoundTag", @@ -2167,7 +2330,7 @@ }, "id": { "type": "IntTag", - "value": 32 + "value": 34 }, "element": { "type": "CompoundTag", @@ -2194,7 +2357,7 @@ }, "id": { "type": "IntTag", - "value": 33 + "value": 35 }, "element": { "type": "CompoundTag", @@ -2221,7 +2384,7 @@ }, "id": { "type": "IntTag", - "value": 34 + "value": 36 }, "element": { "type": "CompoundTag", @@ -2248,7 +2411,7 @@ }, "id": { "type": "IntTag", - "value": 35 + "value": 37 }, "element": { "type": "CompoundTag", @@ -2257,6 +2420,10 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "poking" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2264,10 +2431,6 @@ "message_id": { "type": "StringTag", "value": "sweetBerryBush" - }, - "effects": { - "type": "StringTag", - "value": "poking" } } } @@ -2279,7 +2442,7 @@ }, "id": { "type": "IntTag", - "value": 36 + "value": 38 }, "element": { "type": "CompoundTag", @@ -2288,6 +2451,10 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "thorns" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2295,10 +2462,6 @@ "message_id": { "type": "StringTag", "value": "thorns" - }, - "effects": { - "type": "StringTag", - "value": "thorns" } } } @@ -2310,7 +2473,7 @@ }, "id": { "type": "IntTag", - "value": 37 + "value": 39 }, "element": { "type": "CompoundTag", @@ -2337,7 +2500,7 @@ }, "id": { "type": "IntTag", - "value": 38 + "value": 40 }, "element": { "type": "CompoundTag", @@ -2364,7 +2527,7 @@ }, "id": { "type": "IntTag", - "value": 39 + "value": 41 }, "element": { "type": "CompoundTag", @@ -2373,6 +2536,10 @@ "type": "FloatTag", "value": 0.1 }, + "effects": { + "type": "StringTag", + "value": "burning" + }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2380,10 +2547,6 @@ "message_id": { "type": "StringTag", "value": "onFire" - }, - "effects": { - "type": "StringTag", - "value": "burning" } } } @@ -2395,7 +2558,7 @@ }, "id": { "type": "IntTag", - "value": 40 + "value": 42 }, "element": { "type": "CompoundTag", @@ -2422,7 +2585,7 @@ }, "id": { "type": "IntTag", - "value": 41 + "value": 43 }, "element": { "type": "CompoundTag", @@ -2475,13 +2638,30 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.badlands" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, "sky_color": { "type": "IntTag", "value": 7254527 @@ -2490,33 +2670,33 @@ "type": "IntTag", "value": 9470285 }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "foliage_color": { "type": "IntTag", "value": 10387789 }, - "water_color": { + "water_fog_color": { "type": "IntTag", - "value": 4159204 + "value": 329011 }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2529,6 +2709,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -2552,17 +2736,9 @@ "type": "FloatTag", "value": 0.95 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -2576,7 +2752,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.bamboo_jungle" }, "min_delay": { "type": "IntTag", @@ -2584,29 +2760,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7842047 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2619,6 +2799,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -2642,10 +2826,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -2713,25 +2893,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 6840176 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2744,6 +2924,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -2767,10 +2951,6 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { @@ -2782,25 +2962,25 @@ "type": "IntTag", "value": 7907327 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2813,6 +2993,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -2836,17 +3020,9 @@ "type": "FloatTag", "value": 0.6 }, - "downfall": { - "type": "FloatTag", - "value": 0.6 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -2860,7 +3036,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.forest" }, "min_delay": { "type": "IntTag", @@ -2868,29 +3044,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8037887 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2903,6 +3083,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.6 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -2926,10 +3110,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { @@ -2962,15 +3142,11 @@ "type": "IntTag", "value": 11983713 }, - "water_fog_color": { - "type": "IntTag", - "value": 6141935 - }, "foliage_color": { "type": "IntTag", "value": 11983713 }, - "water_color": { + "water_fog_color": { "type": "IntTag", "value": 6141935 }, @@ -2978,17 +3154,21 @@ "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 6141935 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3001,6 +3181,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3024,10 +3208,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3039,25 +3219,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4020182 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3070,6 +3250,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3093,10 +3277,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -3164,25 +3344,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 3343107 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3195,6 +3375,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3218,10 +3402,6 @@ "type": "FloatTag", "value": 0.7 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { @@ -3242,7 +3422,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.forest" }, "min_delay": { "type": "IntTag", @@ -3258,25 +3438,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3289,6 +3469,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3312,10 +3496,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3327,25 +3507,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4020182 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3358,6 +3538,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3381,17 +3565,9 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -3413,29 +3589,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7907327 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3448,6 +3628,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3471,10 +3655,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3486,25 +3666,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 3750089 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3517,6 +3697,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3544,10 +3728,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3559,25 +3739,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4566514 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4566514 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3590,6 +3770,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3613,10 +3797,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3628,25 +3808,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3659,6 +3839,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3682,13 +3866,30 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.desert" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, "water_fog_color": { "type": "IntTag", "value": 329011 @@ -3697,25 +3898,25 @@ "type": "IntTag", "value": 7254527 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3728,6 +3929,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3751,17 +3956,9 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -3783,29 +3980,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7907327 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3818,6 +4019,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3841,10 +4046,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3856,25 +4057,25 @@ "type": "IntTag", "value": 0 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 10518688 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3887,6 +4088,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3910,10 +4115,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3925,25 +4126,25 @@ "type": "IntTag", "value": 0 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 10518688 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3956,6 +4157,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3979,10 +4184,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -3994,25 +4195,25 @@ "type": "IntTag", "value": 0 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 10518688 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4025,6 +4226,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4048,13 +4253,30 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.badlands" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, "sky_color": { "type": "IntTag", "value": 7254527 @@ -4063,33 +4285,33 @@ "type": "IntTag", "value": 9470285 }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "foliage_color": { "type": "IntTag", "value": 10387789 }, - "water_color": { + "water_fog_color": { "type": "IntTag", - "value": 4159204 + "value": 329011 }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4102,6 +4324,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4125,17 +4351,9 @@ "type": "FloatTag", "value": 0.7 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4149,7 +4367,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.flower_forest" }, "min_delay": { "type": "IntTag", @@ -4157,29 +4375,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7972607 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4192,6 +4414,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4215,17 +4441,9 @@ "type": "FloatTag", "value": 0.7 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4239,7 +4457,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.forest" }, "min_delay": { "type": "IntTag", @@ -4247,29 +4465,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7972607 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4282,6 +4504,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4305,10 +4531,6 @@ "type": "FloatTag", "value": 0 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -4320,25 +4542,25 @@ "type": "IntTag", "value": 8364543 }, - "water_color": { - "type": "IntTag", - "value": 3750089 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4351,6 +4573,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4378,17 +4604,9 @@ "type": "FloatTag", "value": -0.7 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4410,29 +4628,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8756735 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4445,6 +4667,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4468,10 +4694,6 @@ "type": "FloatTag", "value": 0 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -4483,25 +4705,25 @@ "type": "IntTag", "value": 8364543 }, - "water_color": { - "type": "IntTag", - "value": 3750089 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4514,6 +4736,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4537,17 +4763,9 @@ "type": "FloatTag", "value": -0.2 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4569,29 +4787,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8495359 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4604,6 +4826,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4627,10 +4853,6 @@ "type": "FloatTag", "value": 0 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -4642,25 +4864,25 @@ "type": "IntTag", "value": 8364543 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4673,6 +4895,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4696,17 +4922,9 @@ "type": "FloatTag", "value": -0.7 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4728,29 +4946,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8756735 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4763,6 +4985,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4786,17 +5012,9 @@ "type": "FloatTag", "value": 0.95 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4810,7 +5028,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.jungle" }, "min_delay": { "type": "IntTag", @@ -4818,29 +5036,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7842047 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4853,6 +5075,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4876,10 +5102,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -4891,25 +5113,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4566514 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4566514 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4922,6 +5144,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4945,17 +5171,9 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -4977,29 +5195,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5012,6 +5234,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5035,10 +5261,6 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { @@ -5071,33 +5293,33 @@ "type": "IntTag", "value": 7907327 }, - "water_fog_color": { - "type": "IntTag", - "value": 5077600 - }, "foliage_color": { "type": "IntTag", "value": 9285927 }, - "water_color": { + "water_fog_color": { "type": "IntTag", - "value": 3832426 + "value": 5077600 }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 3832426 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5110,6 +5332,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5133,17 +5359,9 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -5165,29 +5383,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 937679 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 937679 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5200,6 +5422,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5223,10 +5449,6 @@ "type": "FloatTag", "value": 0.9 }, - "downfall": { - "type": "FloatTag", - "value": 1 - }, "effects": { "type": "CompoundTag", "value": { @@ -5238,25 +5460,25 @@ "type": "IntTag", "value": 7842047 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5269,6 +5491,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 1 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5292,10 +5518,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -5345,25 +5567,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 3344392 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5376,6 +5598,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -5399,10 +5625,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -5414,25 +5636,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5445,6 +5667,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5468,17 +5694,9 @@ "type": "FloatTag", "value": 0.6 }, - "downfall": { - "type": "FloatTag", - "value": 0.6 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -5492,7 +5710,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.forest" }, "min_delay": { "type": "IntTag", @@ -5500,29 +5718,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8037887 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5535,6 +5757,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.6 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5558,17 +5784,9 @@ "type": "FloatTag", "value": 0.3 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -5590,29 +5808,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8168447 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5625,6 +5847,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5648,17 +5874,9 @@ "type": "FloatTag", "value": 0.25 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -5680,29 +5898,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8233983 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5715,6 +5937,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5738,10 +5964,6 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { @@ -5753,25 +5975,25 @@ "type": "IntTag", "value": 7907327 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5784,6 +6006,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5807,10 +6033,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -5822,25 +6044,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5853,6 +6075,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5876,10 +6102,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -5891,25 +6113,25 @@ "type": "IntTag", "value": 7254527 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5922,6 +6144,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -5945,10 +6171,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -5960,25 +6182,25 @@ "type": "IntTag", "value": 7254527 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5991,6 +6213,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6014,10 +6240,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -6029,25 +6251,25 @@ "type": "IntTag", "value": 0 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 10518688 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6060,6 +6282,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6083,10 +6309,6 @@ "type": "FloatTag", "value": 0.05 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { @@ -6098,25 +6320,25 @@ "type": "IntTag", "value": 8364543 }, - "water_color": { - "type": "IntTag", - "value": 4020182 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6129,6 +6351,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6152,10 +6378,6 @@ "type": "FloatTag", "value": 0 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -6167,25 +6389,25 @@ "type": "IntTag", "value": 8364543 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6198,6 +6420,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6221,17 +6447,9 @@ "type": "FloatTag", "value": -0.3 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -6253,29 +6471,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 8560639 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6288,6 +6510,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6311,10 +6537,6 @@ "type": "FloatTag", "value": -0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { @@ -6326,25 +6548,25 @@ "type": "IntTag", "value": 8625919 }, - "water_color": { - "type": "IntTag", - "value": 4020182 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6357,6 +6579,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6380,10 +6606,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -6451,25 +6673,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 1787717 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6482,6 +6704,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6505,17 +6731,9 @@ "type": "FloatTag", "value": 0.95 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -6529,7 +6747,7 @@ }, "sound": { "type": "StringTag", - "value": "minecraft:music.overworld.jungle_and_forest" + "value": "minecraft:music.overworld.sparse_jungle" }, "min_delay": { "type": "IntTag", @@ -6537,29 +6755,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7842047 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6572,6 +6794,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6595,17 +6821,9 @@ "type": "FloatTag", "value": 1 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "music": { "type": "CompoundTag", "value": { @@ -6627,29 +6845,33 @@ } } }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "sky_color": { "type": "IntTag", "value": 7776511 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6662,6 +6884,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6685,10 +6911,6 @@ "type": "FloatTag", "value": 0.2 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { @@ -6700,25 +6922,25 @@ "type": "IntTag", "value": 8233727 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6731,6 +6953,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6754,10 +6980,6 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "effects": { "type": "CompoundTag", "value": { @@ -6769,25 +6991,25 @@ "type": "IntTag", "value": 7907327 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6800,6 +7022,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6823,10 +7049,6 @@ "type": "FloatTag", "value": 0.8 }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "effects": { "type": "CompoundTag", "value": { @@ -6859,33 +7081,33 @@ "type": "IntTag", "value": 7907327 }, - "water_fog_color": { - "type": "IntTag", - "value": 2302743 - }, "foliage_color": { "type": "IntTag", "value": 6975545 }, - "water_color": { + "water_fog_color": { "type": "IntTag", - "value": 6388580 + "value": 2302743 }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 6388580 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6898,6 +7120,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6921,10 +7147,6 @@ "type": "FloatTag", "value": 0.25 }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "effects": { "type": "CompoundTag", "value": { @@ -6936,25 +7158,25 @@ "type": "IntTag", "value": 8233983 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6967,6 +7189,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6990,10 +7216,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -7005,25 +7227,25 @@ "type": "IntTag", "value": 0 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 10518688 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7036,6 +7258,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7059,10 +7285,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -7074,25 +7296,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7105,6 +7327,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7128,10 +7354,6 @@ "type": "FloatTag", "value": 0.5 }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "effects": { "type": "CompoundTag", "value": { @@ -7143,25 +7365,25 @@ "type": "IntTag", "value": 8103167 }, - "water_color": { - "type": "IntTag", - "value": 4445678 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4445678 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7174,6 +7396,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7197,10 +7423,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -7268,25 +7490,25 @@ "type": "IntTag", "value": 329011 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 1705242 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7299,6 +7521,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7322,10 +7548,6 @@ "type": "FloatTag", "value": 0.2 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { @@ -7337,25 +7559,25 @@ "type": "IntTag", "value": 8233727 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7368,6 +7590,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7391,10 +7617,6 @@ "type": "FloatTag", "value": 0.2 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { @@ -7406,25 +7628,25 @@ "type": "IntTag", "value": 8233727 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7437,6 +7659,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7460,10 +7686,6 @@ "type": "FloatTag", "value": 0.2 }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "effects": { "type": "CompoundTag", "value": { @@ -7475,25 +7697,25 @@ "type": "IntTag", "value": 8233727 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7506,6 +7728,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7529,10 +7755,6 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { @@ -7544,25 +7766,25 @@ "type": "IntTag", "value": 7254527 }, - "water_color": { - "type": "IntTag", - "value": 4159204 - }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7575,6 +7797,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7598,13 +7824,30 @@ "type": "FloatTag", "value": 2 }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "effects": { "type": "CompoundTag", "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.badlands" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, "sky_color": { "type": "IntTag", "value": 7254527 @@ -7613,33 +7856,33 @@ "type": "IntTag", "value": 9470285 }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "foliage_color": { "type": "IntTag", "value": 10387789 }, - "water_color": { + "water_fog_color": { "type": "IntTag", - "value": 4159204 + "value": 329011 }, "fog_color": { "type": "IntTag", "value": 12638463 }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, "mood_sound": { "type": "CompoundTag", "value": { - "offset": { - "type": "DoubleTag", - "value": 2 - }, "tick_delay": { "type": "IntTag", "value": 6000 }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7652,6 +7895,10 @@ } } }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7688,6 +7935,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 1 + }, "description": { "type": "CompoundTag", "value": { @@ -7701,10 +7952,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 1 - }, "ingredient": { "type": "StringTag", "value": "minecraft:amethyst_shard" @@ -7728,6 +7975,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 0.5 + }, "description": { "type": "CompoundTag", "value": { @@ -7741,10 +7992,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.5 - }, "ingredient": { "type": "StringTag", "value": "minecraft:copper_ingot" @@ -7768,6 +8015,19 @@ "element": { "type": "CompoundTag", "value": { + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "diamond": { + "type": "StringTag", + "value": "diamond_darker" + } + } + }, + "item_model_index": { + "type": "FloatTag", + "value": 0.8 + }, "description": { "type": "CompoundTag", "value": { @@ -7781,19 +8041,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.8 - }, - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "diamond": { - "type": "StringTag", - "value": "diamond_darker" - } - } - }, "ingredient": { "type": "StringTag", "value": "minecraft:diamond" @@ -7817,6 +8064,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 0.7 + }, "description": { "type": "CompoundTag", "value": { @@ -7830,10 +8081,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.7 - }, "ingredient": { "type": "StringTag", "value": "minecraft:emerald" @@ -7857,6 +8104,19 @@ "element": { "type": "CompoundTag", "value": { + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "gold": { + "type": "StringTag", + "value": "gold_darker" + } + } + }, + "item_model_index": { + "type": "FloatTag", + "value": 0.6 + }, "description": { "type": "CompoundTag", "value": { @@ -7870,19 +8130,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.6 - }, - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "gold": { - "type": "StringTag", - "value": "gold_darker" - } - } - }, "ingredient": { "type": "StringTag", "value": "minecraft:gold_ingot" @@ -7906,6 +8153,19 @@ "element": { "type": "CompoundTag", "value": { + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "iron": { + "type": "StringTag", + "value": "iron_darker" + } + } + }, + "item_model_index": { + "type": "FloatTag", + "value": 0.2 + }, "description": { "type": "CompoundTag", "value": { @@ -7919,19 +8179,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.2 - }, - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "iron": { - "type": "StringTag", - "value": "iron_darker" - } - } - }, "ingredient": { "type": "StringTag", "value": "minecraft:iron_ingot" @@ -7955,6 +8202,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 0.9 + }, "description": { "type": "CompoundTag", "value": { @@ -7968,10 +8219,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.9 - }, "ingredient": { "type": "StringTag", "value": "minecraft:lapis_lazuli" @@ -7995,6 +8242,19 @@ "element": { "type": "CompoundTag", "value": { + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "netherite": { + "type": "StringTag", + "value": "netherite_darker" + } + } + }, + "item_model_index": { + "type": "FloatTag", + "value": 0.3 + }, "description": { "type": "CompoundTag", "value": { @@ -8008,19 +8268,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.3 - }, - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "netherite": { - "type": "StringTag", - "value": "netherite_darker" - } - } - }, "ingredient": { "type": "StringTag", "value": "minecraft:netherite_ingot" @@ -8044,6 +8291,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 0.1 + }, "description": { "type": "CompoundTag", "value": { @@ -8057,10 +8308,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.1 - }, "ingredient": { "type": "StringTag", "value": "minecraft:quartz" @@ -8084,6 +8331,10 @@ "element": { "type": "CompoundTag", "value": { + "item_model_index": { + "type": "FloatTag", + "value": 0.4 + }, "description": { "type": "CompoundTag", "value": { @@ -8097,10 +8348,6 @@ } } }, - "item_model_index": { - "type": "FloatTag", - "value": 0.4 - }, "ingredient": { "type": "StringTag", "value": "minecraft:redstone" diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json index c48b501..02784c8 100644 --- a/src/main/resources/registries.json +++ b/src/main/resources/registries.json @@ -80,7 +80,7 @@ "protocol_id": 2 } }, - "protocol_id": 29 + "protocol_id": 30 }, "minecraft:attribute": { "entries": { @@ -124,7 +124,7 @@ "protocol_id": 11 } }, - "protocol_id": 19 + "protocol_id": 20 }, "minecraft:banner_pattern": { "entries": { @@ -252,1156 +252,1159 @@ "protocol_id": 19 } }, - "protocol_id": 61 + "protocol_id": 62 }, "minecraft:block": { "default": "minecraft:air", "entries": { "minecraft:acacia_button": { - "protocol_id": 388 + "protocol_id": 389 }, "minecraft:acacia_door": { - "protocol_id": 585 + "protocol_id": 586 }, "minecraft:acacia_fence": { - "protocol_id": 577 + "protocol_id": 578 }, "minecraft:acacia_fence_gate": { - "protocol_id": 569 + "protocol_id": 570 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 210 + "protocol_id": 211 }, "minecraft:acacia_leaves": { - "protocol_id": 85 + "protocol_id": 86 }, "minecraft:acacia_log": { - "protocol_id": 49 + "protocol_id": 50 }, "minecraft:acacia_planks": { "protocol_id": 17 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 236 + "protocol_id": 237 }, "minecraft:acacia_sapling": { "protocol_id": 27 }, "minecraft:acacia_sign": { - "protocol_id": 188 + "protocol_id": 189 }, "minecraft:acacia_slab": { - "protocol_id": 542 + "protocol_id": 543 }, "minecraft:acacia_stairs": { - "protocol_id": 456 + "protocol_id": 457 }, "minecraft:acacia_trapdoor": { - "protocol_id": 288 + "protocol_id": 289 }, "minecraft:acacia_wall_hanging_sign": { - "protocol_id": 221 + "protocol_id": 222 }, "minecraft:acacia_wall_sign": { - "protocol_id": 201 + "protocol_id": 202 }, "minecraft:acacia_wood": { - "protocol_id": 69 + "protocol_id": 70 }, "minecraft:activator_rail": { - "protocol_id": 422 + "protocol_id": 423 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allium": { - "protocol_id": 150 + "protocol_id": 151 }, "minecraft:amethyst_block": { - "protocol_id": 899 + "protocol_id": 903 }, "minecraft:amethyst_cluster": { - "protocol_id": 901 + "protocol_id": 905 }, "minecraft:ancient_debris": { - "protocol_id": 837 + "protocol_id": 841 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 751 + "protocol_id": 755 }, "minecraft:andesite_stairs": { - "protocol_id": 738 + "protocol_id": 742 }, "minecraft:andesite_wall": { - "protocol_id": 763 + "protocol_id": 767 }, "minecraft:anvil": { - "protocol_id": 407 + "protocol_id": 408 }, "minecraft:attached_melon_stem": { - "protocol_id": 313 + "protocol_id": 314 }, "minecraft:attached_pumpkin_stem": { - "protocol_id": 312 + "protocol_id": 313 }, "minecraft:azalea": { - "protocol_id": 954 + "protocol_id": 959 }, "minecraft:azalea_leaves": { - "protocol_id": 89 + "protocol_id": 90 }, "minecraft:azure_bluet": { - "protocol_id": 151 + "protocol_id": 152 }, "minecraft:bamboo": { - "protocol_id": 723 + "protocol_id": 727 }, "minecraft:bamboo_block": { - "protocol_id": 55 + "protocol_id": 56 }, "minecraft:bamboo_button": { - "protocol_id": 392 + "protocol_id": 393 }, "minecraft:bamboo_door": { - "protocol_id": 589 + "protocol_id": 590 }, "minecraft:bamboo_fence": { - "protocol_id": 581 + "protocol_id": 582 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 573 + "protocol_id": 574 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 217 + "protocol_id": 218 }, "minecraft:bamboo_mosaic": { "protocol_id": 22 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 547 + "protocol_id": 548 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 461 + "protocol_id": 462 }, "minecraft:bamboo_planks": { "protocol_id": 21 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 240 + "protocol_id": 241 }, "minecraft:bamboo_sapling": { - "protocol_id": 722 + "protocol_id": 726 }, "minecraft:bamboo_sign": { - "protocol_id": 193 + "protocol_id": 194 }, "minecraft:bamboo_slab": { - "protocol_id": 546 + "protocol_id": 547 }, "minecraft:bamboo_stairs": { - "protocol_id": 460 + "protocol_id": 461 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 292 + "protocol_id": 293 }, "minecraft:bamboo_wall_hanging_sign": { - "protocol_id": 228 + "protocol_id": 229 }, "minecraft:bamboo_wall_sign": { - "protocol_id": 206 + "protocol_id": 207 }, "minecraft:barrel": { - "protocol_id": 770 + "protocol_id": 774 }, "minecraft:barrier": { - "protocol_id": 463 + "protocol_id": 464 }, "minecraft:basalt": { - "protocol_id": 258 + "protocol_id": 259 }, "minecraft:beacon": { - "protocol_id": 351 + "protocol_id": 352 }, "minecraft:bedrock": { "protocol_id": 31 }, "minecraft:bee_nest": { - "protocol_id": 832 + "protocol_id": 836 }, "minecraft:beehive": { - "protocol_id": 833 + "protocol_id": 837 }, "minecraft:beetroots": { - "protocol_id": 598 + "protocol_id": 601 }, "minecraft:bell": { - "protocol_id": 779 + "protocol_id": 783 }, "minecraft:big_dripleaf": { - "protocol_id": 959 + "protocol_id": 964 }, "minecraft:big_dripleaf_stem": { - "protocol_id": 960 + "protocol_id": 965 }, "minecraft:birch_button": { - "protocol_id": 386 + "protocol_id": 387 }, "minecraft:birch_door": { - "protocol_id": 583 + "protocol_id": 584 }, "minecraft:birch_fence": { - "protocol_id": 575 + "protocol_id": 576 }, "minecraft:birch_fence_gate": { - "protocol_id": 567 + "protocol_id": 568 }, "minecraft:birch_hanging_sign": { - "protocol_id": 209 + "protocol_id": 210 }, "minecraft:birch_leaves": { - "protocol_id": 83 + "protocol_id": 84 }, "minecraft:birch_log": { - "protocol_id": 47 + "protocol_id": 48 }, "minecraft:birch_planks": { "protocol_id": 15 }, "minecraft:birch_pressure_plate": { - "protocol_id": 234 + "protocol_id": 235 }, "minecraft:birch_sapling": { "protocol_id": 25 }, "minecraft:birch_sign": { - "protocol_id": 187 + "protocol_id": 188 }, "minecraft:birch_slab": { - "protocol_id": 540 + "protocol_id": 541 }, "minecraft:birch_stairs": { - "protocol_id": 348 + "protocol_id": 349 }, "minecraft:birch_trapdoor": { - "protocol_id": 286 + "protocol_id": 287 }, "minecraft:birch_wall_hanging_sign": { - "protocol_id": 220 + "protocol_id": 221 }, "minecraft:birch_wall_sign": { - "protocol_id": 200 + "protocol_id": 201 }, "minecraft:birch_wood": { - "protocol_id": 67 + "protocol_id": 68 }, "minecraft:black_banner": { - "protocol_id": 517 + "protocol_id": 518 }, "minecraft:black_bed": { - "protocol_id": 117 + "protocol_id": 118 }, "minecraft:black_candle": { - "protocol_id": 881 + "protocol_id": 885 }, "minecraft:black_candle_cake": { - "protocol_id": 898 + "protocol_id": 902 }, "minecraft:black_carpet": { - "protocol_id": 492 + "protocol_id": 493 }, "minecraft:black_concrete": { - "protocol_id": 658 + "protocol_id": 661 }, "minecraft:black_concrete_powder": { - "protocol_id": 674 + "protocol_id": 677 }, "minecraft:black_glazed_terracotta": { - "protocol_id": 642 + "protocol_id": 645 }, "minecraft:black_shulker_box": { - "protocol_id": 626 + "protocol_id": 629 }, "minecraft:black_stained_glass": { - "protocol_id": 283 + "protocol_id": 284 }, "minecraft:black_stained_glass_pane": { - "protocol_id": 455 + "protocol_id": 456 }, "minecraft:black_terracotta": { - "protocol_id": 439 + "protocol_id": 440 }, "minecraft:black_wall_banner": { - "protocol_id": 533 + "protocol_id": 534 }, "minecraft:black_wool": { - "protocol_id": 144 + "protocol_id": 145 }, "minecraft:blackstone": { - "protocol_id": 845 + "protocol_id": 849 }, "minecraft:blackstone_slab": { - "protocol_id": 848 + "protocol_id": 852 }, "minecraft:blackstone_stairs": { - "protocol_id": 846 + "protocol_id": 850 }, "minecraft:blackstone_wall": { - "protocol_id": 847 + "protocol_id": 851 }, "minecraft:blast_furnace": { - "protocol_id": 772 + "protocol_id": 776 }, "minecraft:blue_banner": { - "protocol_id": 513 - }, - "minecraft:blue_bed": { - "protocol_id": 113 - }, - "minecraft:blue_candle": { - "protocol_id": 877 - }, - "minecraft:blue_candle_cake": { - "protocol_id": 894 - }, - "minecraft:blue_carpet": { - "protocol_id": 488 - }, - "minecraft:blue_concrete": { - "protocol_id": 654 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 670 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 638 - }, - "minecraft:blue_ice": { - "protocol_id": 720 - }, - "minecraft:blue_orchid": { - "protocol_id": 149 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 622 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 279 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 451 - }, - "minecraft:blue_terracotta": { - "protocol_id": 435 - }, - "minecraft:blue_wall_banner": { - "protocol_id": 529 - }, - "minecraft:blue_wool": { - "protocol_id": 140 - }, - "minecraft:bone_block": { - "protocol_id": 607 - }, - "minecraft:bookshelf": { - "protocol_id": 166 - }, - "minecraft:brain_coral": { - "protocol_id": 695 - }, - "minecraft:brain_coral_block": { - "protocol_id": 685 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 705 - }, - "minecraft:brain_coral_wall_fan": { - "protocol_id": 715 - }, - "minecraft:brewing_stand": { - "protocol_id": 329 - }, - "minecraft:brick_slab": { - "protocol_id": 554 - }, - "minecraft:brick_stairs": { - "protocol_id": 319 - }, - "minecraft:brick_wall": { - "protocol_id": 755 - }, - "minecraft:bricks": { - "protocol_id": 164 - }, - "minecraft:brown_banner": { "protocol_id": 514 }, - "minecraft:brown_bed": { + "minecraft:blue_bed": { "protocol_id": 114 }, - "minecraft:brown_candle": { - "protocol_id": 878 + "minecraft:blue_candle": { + "protocol_id": 881 }, - "minecraft:brown_candle_cake": { - "protocol_id": 895 + "minecraft:blue_candle_cake": { + "protocol_id": 898 }, - "minecraft:brown_carpet": { + "minecraft:blue_carpet": { "protocol_id": 489 }, - "minecraft:brown_concrete": { - "protocol_id": 655 + "minecraft:blue_concrete": { + "protocol_id": 657 }, - "minecraft:brown_concrete_powder": { - "protocol_id": 671 + "minecraft:blue_concrete_powder": { + "protocol_id": 673 }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 639 + "minecraft:blue_glazed_terracotta": { + "protocol_id": 641 }, - "minecraft:brown_mushroom": { - "protocol_id": 160 + "minecraft:blue_ice": { + "protocol_id": 724 }, - "minecraft:brown_mushroom_block": { - "protocol_id": 305 + "minecraft:blue_orchid": { + "protocol_id": 150 }, - "minecraft:brown_shulker_box": { - "protocol_id": 623 + "minecraft:blue_shulker_box": { + "protocol_id": 625 }, - "minecraft:brown_stained_glass": { + "minecraft:blue_stained_glass": { "protocol_id": 280 }, - "minecraft:brown_stained_glass_pane": { + "minecraft:blue_stained_glass_pane": { "protocol_id": 452 }, - "minecraft:brown_terracotta": { + "minecraft:blue_terracotta": { "protocol_id": 436 }, - "minecraft:brown_wall_banner": { + "minecraft:blue_wall_banner": { "protocol_id": 530 }, - "minecraft:brown_wool": { + "minecraft:blue_wool": { "protocol_id": 141 }, - "minecraft:bubble_column": { - "protocol_id": 727 + "minecraft:bone_block": { + "protocol_id": 610 }, - "minecraft:bubble_coral": { - "protocol_id": 696 + "minecraft:bookshelf": { + "protocol_id": 167 }, - "minecraft:bubble_coral_block": { - "protocol_id": 686 + "minecraft:brain_coral": { + "protocol_id": 699 }, - "minecraft:bubble_coral_fan": { - "protocol_id": 706 + "minecraft:brain_coral_block": { + "protocol_id": 689 }, - "minecraft:bubble_coral_wall_fan": { - "protocol_id": 716 + "minecraft:brain_coral_fan": { + "protocol_id": 709 }, - "minecraft:budding_amethyst": { - "protocol_id": 900 + "minecraft:brain_coral_wall_fan": { + "protocol_id": 719 }, - "minecraft:cactus": { - "protocol_id": 249 - }, - "minecraft:cake": { - "protocol_id": 266 - }, - "minecraft:calcite": { - "protocol_id": 906 - }, - "minecraft:campfire": { - "protocol_id": 782 - }, - "minecraft:candle": { - "protocol_id": 865 - }, - "minecraft:candle_cake": { - "protocol_id": 882 - }, - "minecraft:carrots": { - "protocol_id": 382 - }, - "minecraft:cartography_table": { - "protocol_id": 773 - }, - "minecraft:carved_pumpkin": { - "protocol_id": 264 - }, - "minecraft:cauldron": { + "minecraft:brewing_stand": { "protocol_id": 330 }, + "minecraft:brick_slab": { + "protocol_id": 555 + }, + "minecraft:brick_stairs": { + "protocol_id": 320 + }, + "minecraft:brick_wall": { + "protocol_id": 759 + }, + "minecraft:bricks": { + "protocol_id": 165 + }, + "minecraft:brown_banner": { + "protocol_id": 515 + }, + "minecraft:brown_bed": { + "protocol_id": 115 + }, + "minecraft:brown_candle": { + "protocol_id": 882 + }, + "minecraft:brown_candle_cake": { + "protocol_id": 899 + }, + "minecraft:brown_carpet": { + "protocol_id": 490 + }, + "minecraft:brown_concrete": { + "protocol_id": 658 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 674 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 642 + }, + "minecraft:brown_mushroom": { + "protocol_id": 161 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 306 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 626 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 281 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 453 + }, + "minecraft:brown_terracotta": { + "protocol_id": 437 + }, + "minecraft:brown_wall_banner": { + "protocol_id": 531 + }, + "minecraft:brown_wool": { + "protocol_id": 142 + }, + "minecraft:bubble_column": { + "protocol_id": 731 + }, + "minecraft:bubble_coral": { + "protocol_id": 700 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 690 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 710 + }, + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 720 + }, + "minecraft:budding_amethyst": { + "protocol_id": 904 + }, + "minecraft:cactus": { + "protocol_id": 250 + }, + "minecraft:cake": { + "protocol_id": 267 + }, + "minecraft:calcite": { + "protocol_id": 910 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 914 + }, + "minecraft:campfire": { + "protocol_id": 786 + }, + "minecraft:candle": { + "protocol_id": 869 + }, + "minecraft:candle_cake": { + "protocol_id": 886 + }, + "minecraft:carrots": { + "protocol_id": 383 + }, + "minecraft:cartography_table": { + "protocol_id": 777 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 265 + }, + "minecraft:cauldron": { + "protocol_id": 331 + }, "minecraft:cave_air": { - "protocol_id": 726 + "protocol_id": 730 }, "minecraft:cave_vines": { - "protocol_id": 951 + "protocol_id": 956 }, "minecraft:cave_vines_plant": { - "protocol_id": 952 + "protocol_id": 957 }, "minecraft:chain": { - "protocol_id": 309 + "protocol_id": 310 }, "minecraft:chain_command_block": { - "protocol_id": 602 + "protocol_id": 605 }, "minecraft:cherry_button": { - "protocol_id": 389 + "protocol_id": 390 }, "minecraft:cherry_door": { - "protocol_id": 586 + "protocol_id": 587 }, "minecraft:cherry_fence": { - "protocol_id": 578 + "protocol_id": 579 }, "minecraft:cherry_fence_gate": { - "protocol_id": 570 + "protocol_id": 571 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 211 + "protocol_id": 212 }, "minecraft:cherry_leaves": { - "protocol_id": 86 + "protocol_id": 87 }, "minecraft:cherry_log": { - "protocol_id": 50 + "protocol_id": 51 }, "minecraft:cherry_planks": { "protocol_id": 18 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 237 + "protocol_id": 238 }, "minecraft:cherry_sapling": { "protocol_id": 28 }, "minecraft:cherry_sign": { - "protocol_id": 189 + "protocol_id": 190 }, "minecraft:cherry_slab": { - "protocol_id": 543 + "protocol_id": 544 }, "minecraft:cherry_stairs": { - "protocol_id": 457 + "protocol_id": 458 }, "minecraft:cherry_trapdoor": { - "protocol_id": 289 + "protocol_id": 290 }, "minecraft:cherry_wall_hanging_sign": { - "protocol_id": 222 + "protocol_id": 223 }, "minecraft:cherry_wall_sign": { - "protocol_id": 202 + "protocol_id": 203 }, "minecraft:cherry_wood": { - "protocol_id": 70 + "protocol_id": 71 }, "minecraft:chest": { - "protocol_id": 176 + "protocol_id": 177 }, "minecraft:chipped_anvil": { - "protocol_id": 408 + "protocol_id": 409 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 167 + "protocol_id": 168 }, "minecraft:chiseled_deepslate": { - "protocol_id": 982 + "protocol_id": 987 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 862 + "protocol_id": 866 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 852 + "protocol_id": 856 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 419 + "protocol_id": 420 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 535 + "protocol_id": 536 }, "minecraft:chiseled_sandstone": { - "protocol_id": 99 + "protocol_id": 100 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 296 + "protocol_id": 297 }, "minecraft:chorus_flower": { - "protocol_id": 592 + "protocol_id": 593 }, "minecraft:chorus_plant": { - "protocol_id": 591 + "protocol_id": 592 }, "minecraft:clay": { - "protocol_id": 250 + "protocol_id": 251 }, "minecraft:coal_block": { - "protocol_id": 494 + "protocol_id": 495 }, "minecraft:coal_ore": { - "protocol_id": 42 + "protocol_id": 43 }, "minecraft:coarse_dirt": { "protocol_id": 10 }, "minecraft:cobbled_deepslate": { - "protocol_id": 966 + "protocol_id": 971 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 968 + "protocol_id": 973 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 967 + "protocol_id": 972 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 969 + "protocol_id": 974 }, "minecraft:cobblestone": { "protocol_id": 12 }, "minecraft:cobblestone_slab": { - "protocol_id": 553 + "protocol_id": 554 }, "minecraft:cobblestone_stairs": { - "protocol_id": 197 + "protocol_id": 198 }, "minecraft:cobblestone_wall": { - "protocol_id": 352 + "protocol_id": 353 }, "minecraft:cobweb": { - "protocol_id": 121 + "protocol_id": 122 }, "minecraft:cocoa": { - "protocol_id": 339 + "protocol_id": 340 }, "minecraft:command_block": { - "protocol_id": 350 + "protocol_id": 351 }, "minecraft:comparator": { - "protocol_id": 413 + "protocol_id": 414 }, "minecraft:composter": { - "protocol_id": 830 + "protocol_id": 834 }, "minecraft:conduit": { - "protocol_id": 721 + "protocol_id": 725 }, "minecraft:copper_block": { - "protocol_id": 917 + "protocol_id": 922 }, "minecraft:copper_ore": { - "protocol_id": 918 - }, - "minecraft:cornflower": { - "protocol_id": 157 - }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 983 - }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 984 - }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 863 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 851 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 295 - }, - "minecraft:crafting_table": { - "protocol_id": 181 - }, - "minecraft:creeper_head": { - "protocol_id": 401 - }, - "minecraft:creeper_wall_head": { - "protocol_id": 402 - }, - "minecraft:crimson_button": { - "protocol_id": 820 - }, - "minecraft:crimson_door": { - "protocol_id": 822 - }, - "minecraft:crimson_fence": { - "protocol_id": 812 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 816 - }, - "minecraft:crimson_fungus": { - "protocol_id": 799 - }, - "minecraft:crimson_hanging_sign": { - "protocol_id": 214 - }, - "minecraft:crimson_hyphae": { - "protocol_id": 796 - }, - "minecraft:crimson_nylium": { - "protocol_id": 798 - }, - "minecraft:crimson_planks": { - "protocol_id": 806 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 810 - }, - "minecraft:crimson_roots": { - "protocol_id": 805 - }, - "minecraft:crimson_sign": { - "protocol_id": 824 - }, - "minecraft:crimson_slab": { - "protocol_id": 808 - }, - "minecraft:crimson_stairs": { - "protocol_id": 818 - }, - "minecraft:crimson_stem": { - "protocol_id": 794 - }, - "minecraft:crimson_trapdoor": { - "protocol_id": 814 - }, - "minecraft:crimson_wall_hanging_sign": { - "protocol_id": 226 - }, - "minecraft:crimson_wall_sign": { - "protocol_id": 826 - }, - "minecraft:crying_obsidian": { - "protocol_id": 838 - }, - "minecraft:cut_copper": { "protocol_id": 923 }, + "minecraft:cornflower": { + "protocol_id": 158 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 988 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 989 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 867 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 855 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 296 + }, + "minecraft:crafting_table": { + "protocol_id": 182 + }, + "minecraft:creeper_head": { + "protocol_id": 402 + }, + "minecraft:creeper_wall_head": { + "protocol_id": 403 + }, + "minecraft:crimson_button": { + "protocol_id": 824 + }, + "minecraft:crimson_door": { + "protocol_id": 826 + }, + "minecraft:crimson_fence": { + "protocol_id": 816 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 820 + }, + "minecraft:crimson_fungus": { + "protocol_id": 803 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 215 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 800 + }, + "minecraft:crimson_nylium": { + "protocol_id": 802 + }, + "minecraft:crimson_planks": { + "protocol_id": 810 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 814 + }, + "minecraft:crimson_roots": { + "protocol_id": 809 + }, + "minecraft:crimson_sign": { + "protocol_id": 828 + }, + "minecraft:crimson_slab": { + "protocol_id": 812 + }, + "minecraft:crimson_stairs": { + "protocol_id": 822 + }, + "minecraft:crimson_stem": { + "protocol_id": 798 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 818 + }, + "minecraft:crimson_wall_hanging_sign": { + "protocol_id": 227 + }, + "minecraft:crimson_wall_sign": { + "protocol_id": 830 + }, + "minecraft:crying_obsidian": { + "protocol_id": 842 + }, + "minecraft:cut_copper": { + "protocol_id": 928 + }, "minecraft:cut_copper_slab": { - "protocol_id": 931 + "protocol_id": 936 }, "minecraft:cut_copper_stairs": { - "protocol_id": 927 + "protocol_id": 932 }, "minecraft:cut_red_sandstone": { - "protocol_id": 536 + "protocol_id": 537 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 560 + "protocol_id": 561 }, "minecraft:cut_sandstone": { - "protocol_id": 100 + "protocol_id": 101 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 551 + "protocol_id": 552 }, "minecraft:cyan_banner": { - "protocol_id": 511 + "protocol_id": 512 }, "minecraft:cyan_bed": { - "protocol_id": 111 + "protocol_id": 112 }, "minecraft:cyan_candle": { - "protocol_id": 875 + "protocol_id": 879 }, "minecraft:cyan_candle_cake": { - "protocol_id": 892 + "protocol_id": 896 }, "minecraft:cyan_carpet": { - "protocol_id": 486 + "protocol_id": 487 }, "minecraft:cyan_concrete": { - "protocol_id": 652 + "protocol_id": 655 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 668 + "protocol_id": 671 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 636 + "protocol_id": 639 }, "minecraft:cyan_shulker_box": { - "protocol_id": 620 + "protocol_id": 623 }, "minecraft:cyan_stained_glass": { - "protocol_id": 277 + "protocol_id": 278 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 449 + "protocol_id": 450 }, "minecraft:cyan_terracotta": { - "protocol_id": 433 + "protocol_id": 434 }, "minecraft:cyan_wall_banner": { - "protocol_id": 527 + "protocol_id": 528 }, "minecraft:cyan_wool": { - "protocol_id": 138 + "protocol_id": 139 }, "minecraft:damaged_anvil": { - "protocol_id": 409 + "protocol_id": 410 }, "minecraft:dandelion": { - "protocol_id": 146 + "protocol_id": 147 }, "minecraft:dark_oak_button": { - "protocol_id": 390 + "protocol_id": 391 }, "minecraft:dark_oak_door": { - "protocol_id": 587 + "protocol_id": 588 }, "minecraft:dark_oak_fence": { - "protocol_id": 579 + "protocol_id": 580 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 571 + "protocol_id": 572 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 213 + "protocol_id": 214 }, "minecraft:dark_oak_leaves": { - "protocol_id": 87 + "protocol_id": 88 }, "minecraft:dark_oak_log": { - "protocol_id": 51 + "protocol_id": 52 }, "minecraft:dark_oak_planks": { "protocol_id": 19 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 238 + "protocol_id": 239 }, "minecraft:dark_oak_sapling": { "protocol_id": 29 }, "minecraft:dark_oak_sign": { - "protocol_id": 191 + "protocol_id": 192 }, "minecraft:dark_oak_slab": { - "protocol_id": 544 + "protocol_id": 545 }, "minecraft:dark_oak_stairs": { - "protocol_id": 458 + "protocol_id": 459 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 290 + "protocol_id": 291 }, "minecraft:dark_oak_wall_hanging_sign": { - "protocol_id": 224 + "protocol_id": 225 }, "minecraft:dark_oak_wall_sign": { - "protocol_id": 204 + "protocol_id": 205 }, "minecraft:dark_oak_wood": { - "protocol_id": 71 + "protocol_id": 72 }, "minecraft:dark_prismarine": { - "protocol_id": 468 + "protocol_id": 469 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 474 + "protocol_id": 475 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 471 + "protocol_id": 472 }, "minecraft:daylight_detector": { - "protocol_id": 414 + "protocol_id": 415 }, "minecraft:dead_brain_coral": { - "protocol_id": 690 + "protocol_id": 694 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 680 + "protocol_id": 684 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 700 + "protocol_id": 704 }, "minecraft:dead_brain_coral_wall_fan": { - "protocol_id": 710 + "protocol_id": 714 }, "minecraft:dead_bubble_coral": { - "protocol_id": 691 + "protocol_id": 695 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 681 + "protocol_id": 685 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 701 + "protocol_id": 705 }, "minecraft:dead_bubble_coral_wall_fan": { - "protocol_id": 711 + "protocol_id": 715 }, "minecraft:dead_bush": { - "protocol_id": 124 + "protocol_id": 125 }, "minecraft:dead_fire_coral": { - "protocol_id": 692 + "protocol_id": 696 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 682 + "protocol_id": 686 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 702 + "protocol_id": 706 }, "minecraft:dead_fire_coral_wall_fan": { - "protocol_id": 712 + "protocol_id": 716 }, "minecraft:dead_horn_coral": { - "protocol_id": 693 + "protocol_id": 697 }, "minecraft:dead_horn_coral_block": { - "protocol_id": 683 + "protocol_id": 687 }, "minecraft:dead_horn_coral_fan": { - "protocol_id": 703 + "protocol_id": 707 }, "minecraft:dead_horn_coral_wall_fan": { - "protocol_id": 713 + "protocol_id": 717 }, "minecraft:dead_tube_coral": { - "protocol_id": 689 + "protocol_id": 693 }, "minecraft:dead_tube_coral_block": { - "protocol_id": 679 + "protocol_id": 683 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 699 + "protocol_id": 703 }, "minecraft:dead_tube_coral_wall_fan": { - "protocol_id": 709 + "protocol_id": 713 }, "minecraft:decorated_pot": { - "protocol_id": 997 + "protocol_id": 1002 }, "minecraft:deepslate": { - "protocol_id": 965 + "protocol_id": 970 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 980 + "protocol_id": 985 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 979 + "protocol_id": 984 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 981 + "protocol_id": 986 }, "minecraft:deepslate_bricks": { - "protocol_id": 978 + "protocol_id": 983 }, "minecraft:deepslate_coal_ore": { - "protocol_id": 43 + "protocol_id": 44 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 919 + "protocol_id": 924 }, "minecraft:deepslate_diamond_ore": { - "protocol_id": 179 - }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 342 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 39 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 41 - }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 95 - }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 242 - }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 976 - }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 975 - }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 977 - }, - "minecraft:deepslate_tiles": { - "protocol_id": 974 - }, - "minecraft:detector_rail": { - "protocol_id": 119 - }, - "minecraft:diamond_block": { "protocol_id": 180 }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 343 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 40 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 42 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 96 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 243 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 981 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 980 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 982 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 979 + }, + "minecraft:detector_rail": { + "protocol_id": 120 + }, + "minecraft:diamond_block": { + "protocol_id": 181 + }, "minecraft:diamond_ore": { - "protocol_id": 178 + "protocol_id": 179 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 754 + "protocol_id": 758 }, "minecraft:diorite_stairs": { - "protocol_id": 741 + "protocol_id": 745 }, "minecraft:diorite_wall": { - "protocol_id": 767 + "protocol_id": 771 }, "minecraft:dirt": { "protocol_id": 9 }, "minecraft:dirt_path": { - "protocol_id": 599 + "protocol_id": 602 }, "minecraft:dispenser": { - "protocol_id": 97 + "protocol_id": 98 }, "minecraft:dragon_egg": { - "protocol_id": 337 + "protocol_id": 338 }, "minecraft:dragon_head": { - "protocol_id": 403 - }, - "minecraft:dragon_wall_head": { "protocol_id": 404 }, + "minecraft:dragon_wall_head": { + "protocol_id": 405 + }, "minecraft:dried_kelp_block": { - "protocol_id": 677 + "protocol_id": 680 }, "minecraft:dripstone_block": { - "protocol_id": 950 - }, - "minecraft:dropper": { - "protocol_id": 423 - }, - "minecraft:emerald_block": { - "protocol_id": 346 - }, - "minecraft:emerald_ore": { - "protocol_id": 341 - }, - "minecraft:enchanting_table": { - "protocol_id": 328 - }, - "minecraft:end_gateway": { - "protocol_id": 600 - }, - "minecraft:end_portal": { - "protocol_id": 334 - }, - "minecraft:end_portal_frame": { - "protocol_id": 335 - }, - "minecraft:end_rod": { - "protocol_id": 590 - }, - "minecraft:end_stone": { - "protocol_id": 336 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 747 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 733 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 766 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 596 - }, - "minecraft:ender_chest": { - "protocol_id": 343 - }, - "minecraft:exposed_copper": { - "protocol_id": 916 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 922 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 930 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 926 - }, - "minecraft:farmland": { - "protocol_id": 183 - }, - "minecraft:fern": { - "protocol_id": 123 - }, - "minecraft:fire": { - "protocol_id": 172 - }, - "minecraft:fire_coral": { - "protocol_id": 697 - }, - "minecraft:fire_coral_block": { - "protocol_id": 687 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 707 - }, - "minecraft:fire_coral_wall_fan": { - "protocol_id": 717 - }, - "minecraft:fletching_table": { - "protocol_id": 774 - }, - "minecraft:flower_pot": { - "protocol_id": 354 - }, - "minecraft:flowering_azalea": { "protocol_id": 955 }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 90 + "minecraft:dropper": { + "protocol_id": 424 }, - "minecraft:frogspawn": { - "protocol_id": 995 + "minecraft:emerald_block": { + "protocol_id": 347 }, - "minecraft:frosted_ice": { + "minecraft:emerald_ore": { + "protocol_id": 342 + }, + "minecraft:enchanting_table": { + "protocol_id": 329 + }, + "minecraft:end_gateway": { "protocol_id": 603 }, - "minecraft:furnace": { + "minecraft:end_portal": { + "protocol_id": 335 + }, + "minecraft:end_portal_frame": { + "protocol_id": 336 + }, + "minecraft:end_rod": { + "protocol_id": 591 + }, + "minecraft:end_stone": { + "protocol_id": 337 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 751 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 737 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 770 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 597 + }, + "minecraft:ender_chest": { + "protocol_id": 344 + }, + "minecraft:exposed_copper": { + "protocol_id": 921 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 927 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 935 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 931 + }, + "minecraft:farmland": { "protocol_id": 184 }, + "minecraft:fern": { + "protocol_id": 124 + }, + "minecraft:fire": { + "protocol_id": 173 + }, + "minecraft:fire_coral": { + "protocol_id": 701 + }, + "minecraft:fire_coral_block": { + "protocol_id": 691 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 711 + }, + "minecraft:fire_coral_wall_fan": { + "protocol_id": 721 + }, + "minecraft:fletching_table": { + "protocol_id": 778 + }, + "minecraft:flower_pot": { + "protocol_id": 355 + }, + "minecraft:flowering_azalea": { + "protocol_id": 960 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 91 + }, + "minecraft:frogspawn": { + "protocol_id": 1000 + }, + "minecraft:frosted_ice": { + "protocol_id": 606 + }, + "minecraft:furnace": { + "protocol_id": 185 + }, "minecraft:gilded_blackstone": { - "protocol_id": 856 + "protocol_id": 860 }, "minecraft:glass": { - "protocol_id": 93 + "protocol_id": 94 }, "minecraft:glass_pane": { - "protocol_id": 310 + "protocol_id": 311 }, "minecraft:glow_lichen": { - "protocol_id": 317 + "protocol_id": 318 }, "minecraft:glowstone": { - "protocol_id": 262 + "protocol_id": 263 }, "minecraft:gold_block": { - "protocol_id": 162 + "protocol_id": 163 }, "minecraft:gold_ore": { - "protocol_id": 38 + "protocol_id": 39 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 750 + "protocol_id": 754 }, "minecraft:granite_stairs": { - "protocol_id": 737 + "protocol_id": 741 }, "minecraft:granite_wall": { - "protocol_id": 759 + "protocol_id": 763 }, "minecraft:grass": { - "protocol_id": 122 + "protocol_id": 123 }, "minecraft:grass_block": { "protocol_id": 8 @@ -1410,1846 +1413,1858 @@ "protocol_id": 37 }, "minecraft:gray_banner": { - "protocol_id": 509 + "protocol_id": 510 }, "minecraft:gray_bed": { - "protocol_id": 109 + "protocol_id": 110 }, "minecraft:gray_candle": { - "protocol_id": 873 + "protocol_id": 877 }, "minecraft:gray_candle_cake": { - "protocol_id": 890 + "protocol_id": 894 }, "minecraft:gray_carpet": { - "protocol_id": 484 + "protocol_id": 485 }, "minecraft:gray_concrete": { - "protocol_id": 650 + "protocol_id": 653 }, "minecraft:gray_concrete_powder": { - "protocol_id": 666 + "protocol_id": 669 }, "minecraft:gray_glazed_terracotta": { - "protocol_id": 634 + "protocol_id": 637 }, "minecraft:gray_shulker_box": { - "protocol_id": 618 + "protocol_id": 621 }, "minecraft:gray_stained_glass": { - "protocol_id": 275 + "protocol_id": 276 }, "minecraft:gray_stained_glass_pane": { - "protocol_id": 447 + "protocol_id": 448 }, "minecraft:gray_terracotta": { - "protocol_id": 431 + "protocol_id": 432 }, "minecraft:gray_wall_banner": { - "protocol_id": 525 + "protocol_id": 526 }, "minecraft:gray_wool": { - "protocol_id": 136 + "protocol_id": 137 }, "minecraft:green_banner": { - "protocol_id": 515 + "protocol_id": 516 }, "minecraft:green_bed": { - "protocol_id": 115 + "protocol_id": 116 }, "minecraft:green_candle": { - "protocol_id": 879 + "protocol_id": 883 }, "minecraft:green_candle_cake": { - "protocol_id": 896 + "protocol_id": 900 }, "minecraft:green_carpet": { - "protocol_id": 490 + "protocol_id": 491 }, "minecraft:green_concrete": { - "protocol_id": 656 + "protocol_id": 659 }, "minecraft:green_concrete_powder": { - "protocol_id": 672 + "protocol_id": 675 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 640 + "protocol_id": 643 }, "minecraft:green_shulker_box": { - "protocol_id": 624 + "protocol_id": 627 }, "minecraft:green_stained_glass": { - "protocol_id": 281 + "protocol_id": 282 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 453 + "protocol_id": 454 }, "minecraft:green_terracotta": { - "protocol_id": 437 + "protocol_id": 438 }, "minecraft:green_wall_banner": { - "protocol_id": 531 + "protocol_id": 532 }, "minecraft:green_wool": { - "protocol_id": 142 + "protocol_id": 143 }, "minecraft:grindstone": { - "protocol_id": 775 + "protocol_id": 779 }, "minecraft:hanging_roots": { - "protocol_id": 962 + "protocol_id": 967 }, "minecraft:hay_block": { - "protocol_id": 476 + "protocol_id": 477 }, "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 412 + "protocol_id": 413 }, "minecraft:honey_block": { - "protocol_id": 834 + "protocol_id": 838 }, "minecraft:honeycomb_block": { - "protocol_id": 835 + "protocol_id": 839 }, "minecraft:hopper": { - "protocol_id": 417 + "protocol_id": 418 }, "minecraft:horn_coral": { - "protocol_id": 698 + "protocol_id": 702 }, "minecraft:horn_coral_block": { - "protocol_id": 688 + "protocol_id": 692 }, "minecraft:horn_coral_fan": { - "protocol_id": 708 + "protocol_id": 712 }, "minecraft:horn_coral_wall_fan": { - "protocol_id": 718 + "protocol_id": 722 }, "minecraft:ice": { - "protocol_id": 247 + "protocol_id": 248 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 304 + "protocol_id": 305 }, "minecraft:infested_cobblestone": { - "protocol_id": 300 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 303 - }, - "minecraft:infested_deepslate": { - "protocol_id": 985 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 302 - }, - "minecraft:infested_stone": { - "protocol_id": 299 - }, - "minecraft:infested_stone_bricks": { "protocol_id": 301 }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 304 + }, + "minecraft:infested_deepslate": { + "protocol_id": 990 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 303 + }, + "minecraft:infested_stone": { + "protocol_id": 300 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 302 + }, "minecraft:iron_bars": { - "protocol_id": 308 + "protocol_id": 309 }, "minecraft:iron_block": { - "protocol_id": 163 + "protocol_id": 164 }, "minecraft:iron_door": { - "protocol_id": 231 + "protocol_id": 232 }, "minecraft:iron_ore": { - "protocol_id": 40 + "protocol_id": 41 }, "minecraft:iron_trapdoor": { - "protocol_id": 465 + "protocol_id": 466 }, "minecraft:jack_o_lantern": { - "protocol_id": 265 + "protocol_id": 266 }, "minecraft:jigsaw": { - "protocol_id": 829 + "protocol_id": 833 }, "minecraft:jukebox": { - "protocol_id": 252 + "protocol_id": 253 }, "minecraft:jungle_button": { - "protocol_id": 387 + "protocol_id": 388 }, "minecraft:jungle_door": { - "protocol_id": 584 + "protocol_id": 585 }, "minecraft:jungle_fence": { - "protocol_id": 576 + "protocol_id": 577 }, "minecraft:jungle_fence_gate": { - "protocol_id": 568 + "protocol_id": 569 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 212 + "protocol_id": 213 }, "minecraft:jungle_leaves": { - "protocol_id": 84 + "protocol_id": 85 }, "minecraft:jungle_log": { - "protocol_id": 48 + "protocol_id": 49 }, "minecraft:jungle_planks": { "protocol_id": 16 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 235 + "protocol_id": 236 }, "minecraft:jungle_sapling": { "protocol_id": 26 }, "minecraft:jungle_sign": { - "protocol_id": 190 + "protocol_id": 191 }, "minecraft:jungle_slab": { - "protocol_id": 541 + "protocol_id": 542 }, "minecraft:jungle_stairs": { - "protocol_id": 349 + "protocol_id": 350 }, "minecraft:jungle_trapdoor": { - "protocol_id": 287 + "protocol_id": 288 }, "minecraft:jungle_wall_hanging_sign": { - "protocol_id": 223 + "protocol_id": 224 }, "minecraft:jungle_wall_sign": { - "protocol_id": 203 + "protocol_id": 204 }, "minecraft:jungle_wood": { - "protocol_id": 68 + "protocol_id": 69 }, "minecraft:kelp": { - "protocol_id": 675 + "protocol_id": 678 }, "minecraft:kelp_plant": { - "protocol_id": 676 + "protocol_id": 679 }, "minecraft:ladder": { - "protocol_id": 195 + "protocol_id": 196 }, "minecraft:lantern": { - "protocol_id": 780 + "protocol_id": 784 }, "minecraft:lapis_block": { - "protocol_id": 96 + "protocol_id": 97 }, "minecraft:lapis_ore": { - "protocol_id": 94 + "protocol_id": 95 }, "minecraft:large_amethyst_bud": { - "protocol_id": 902 + "protocol_id": 906 }, "minecraft:large_fern": { - "protocol_id": 501 + "protocol_id": 502 }, "minecraft:lava": { "protocol_id": 33 }, "minecraft:lava_cauldron": { - "protocol_id": 332 + "protocol_id": 333 }, "minecraft:lectern": { - "protocol_id": 776 + "protocol_id": 780 }, "minecraft:lever": { - "protocol_id": 229 + "protocol_id": 230 }, "minecraft:light": { - "protocol_id": 464 + "protocol_id": 465 }, "minecraft:light_blue_banner": { - "protocol_id": 505 + "protocol_id": 506 }, "minecraft:light_blue_bed": { - "protocol_id": 105 + "protocol_id": 106 }, "minecraft:light_blue_candle": { - "protocol_id": 869 + "protocol_id": 873 }, "minecraft:light_blue_candle_cake": { - "protocol_id": 886 + "protocol_id": 890 }, "minecraft:light_blue_carpet": { - "protocol_id": 480 + "protocol_id": 481 }, "minecraft:light_blue_concrete": { - "protocol_id": 646 + "protocol_id": 649 }, "minecraft:light_blue_concrete_powder": { - "protocol_id": 662 + "protocol_id": 665 }, "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 630 + "protocol_id": 633 }, "minecraft:light_blue_shulker_box": { - "protocol_id": 614 + "protocol_id": 617 }, "minecraft:light_blue_stained_glass": { - "protocol_id": 271 + "protocol_id": 272 }, "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 443 + "protocol_id": 444 }, "minecraft:light_blue_terracotta": { - "protocol_id": 427 + "protocol_id": 428 }, "minecraft:light_blue_wall_banner": { - "protocol_id": 521 + "protocol_id": 522 }, "minecraft:light_blue_wool": { - "protocol_id": 132 + "protocol_id": 133 }, "minecraft:light_gray_banner": { - "protocol_id": 510 + "protocol_id": 511 }, "minecraft:light_gray_bed": { - "protocol_id": 110 + "protocol_id": 111 }, "minecraft:light_gray_candle": { - "protocol_id": 874 + "protocol_id": 878 }, "minecraft:light_gray_candle_cake": { - "protocol_id": 891 + "protocol_id": 895 }, "minecraft:light_gray_carpet": { - "protocol_id": 485 + "protocol_id": 486 }, "minecraft:light_gray_concrete": { - "protocol_id": 651 + "protocol_id": 654 }, "minecraft:light_gray_concrete_powder": { - "protocol_id": 667 + "protocol_id": 670 }, "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 635 + "protocol_id": 638 }, "minecraft:light_gray_shulker_box": { - "protocol_id": 619 + "protocol_id": 622 }, "minecraft:light_gray_stained_glass": { - "protocol_id": 276 + "protocol_id": 277 }, "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 448 + "protocol_id": 449 }, "minecraft:light_gray_terracotta": { - "protocol_id": 432 + "protocol_id": 433 }, "minecraft:light_gray_wall_banner": { - "protocol_id": 526 + "protocol_id": 527 }, "minecraft:light_gray_wool": { - "protocol_id": 137 + "protocol_id": 138 }, "minecraft:light_weighted_pressure_plate": { - "protocol_id": 411 + "protocol_id": 412 }, "minecraft:lightning_rod": { - "protocol_id": 948 + "protocol_id": 953 }, "minecraft:lilac": { - "protocol_id": 497 + "protocol_id": 498 }, "minecraft:lily_of_the_valley": { - "protocol_id": 159 + "protocol_id": 160 }, "minecraft:lily_pad": { - "protocol_id": 323 + "protocol_id": 324 }, "minecraft:lime_banner": { - "protocol_id": 507 + "protocol_id": 508 }, "minecraft:lime_bed": { - "protocol_id": 107 + "protocol_id": 108 }, "minecraft:lime_candle": { - "protocol_id": 871 + "protocol_id": 875 }, "minecraft:lime_candle_cake": { - "protocol_id": 888 + "protocol_id": 892 }, "minecraft:lime_carpet": { - "protocol_id": 482 + "protocol_id": 483 }, "minecraft:lime_concrete": { - "protocol_id": 648 + "protocol_id": 651 }, "minecraft:lime_concrete_powder": { - "protocol_id": 664 + "protocol_id": 667 }, "minecraft:lime_glazed_terracotta": { - "protocol_id": 632 + "protocol_id": 635 }, "minecraft:lime_shulker_box": { - "protocol_id": 616 + "protocol_id": 619 }, "minecraft:lime_stained_glass": { - "protocol_id": 273 + "protocol_id": 274 }, "minecraft:lime_stained_glass_pane": { - "protocol_id": 445 + "protocol_id": 446 }, "minecraft:lime_terracotta": { - "protocol_id": 429 + "protocol_id": 430 }, "minecraft:lime_wall_banner": { - "protocol_id": 523 + "protocol_id": 524 }, "minecraft:lime_wool": { - "protocol_id": 134 + "protocol_id": 135 }, "minecraft:lodestone": { - "protocol_id": 844 + "protocol_id": 848 }, "minecraft:loom": { - "protocol_id": 769 + "protocol_id": 773 }, "minecraft:magenta_banner": { - "protocol_id": 504 + "protocol_id": 505 }, "minecraft:magenta_bed": { - "protocol_id": 104 + "protocol_id": 105 }, "minecraft:magenta_candle": { - "protocol_id": 868 + "protocol_id": 872 }, "minecraft:magenta_candle_cake": { - "protocol_id": 885 + "protocol_id": 889 }, "minecraft:magenta_carpet": { - "protocol_id": 479 + "protocol_id": 480 }, "minecraft:magenta_concrete": { - "protocol_id": 645 + "protocol_id": 648 }, "minecraft:magenta_concrete_powder": { - "protocol_id": 661 + "protocol_id": 664 }, "minecraft:magenta_glazed_terracotta": { - "protocol_id": 629 + "protocol_id": 632 }, "minecraft:magenta_shulker_box": { - "protocol_id": 613 + "protocol_id": 616 }, "minecraft:magenta_stained_glass": { - "protocol_id": 270 + "protocol_id": 271 }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 442 + "protocol_id": 443 }, "minecraft:magenta_terracotta": { - "protocol_id": 426 + "protocol_id": 427 }, "minecraft:magenta_wall_banner": { - "protocol_id": 520 + "protocol_id": 521 }, "minecraft:magenta_wool": { - "protocol_id": 131 + "protocol_id": 132 }, "minecraft:magma_block": { - "protocol_id": 604 + "protocol_id": 607 }, "minecraft:mangrove_button": { - "protocol_id": 391 + "protocol_id": 392 }, "minecraft:mangrove_door": { - "protocol_id": 588 + "protocol_id": 589 }, "minecraft:mangrove_fence": { - "protocol_id": 580 + "protocol_id": 581 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 572 + "protocol_id": 573 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 216 + "protocol_id": 217 }, "minecraft:mangrove_leaves": { - "protocol_id": 88 + "protocol_id": 89 }, "minecraft:mangrove_log": { - "protocol_id": 52 + "protocol_id": 53 }, "minecraft:mangrove_planks": { "protocol_id": 20 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 239 + "protocol_id": 240 }, "minecraft:mangrove_propagule": { "protocol_id": 30 }, "minecraft:mangrove_roots": { - "protocol_id": 53 - }, - "minecraft:mangrove_sign": { - "protocol_id": 192 - }, - "minecraft:mangrove_slab": { - "protocol_id": 545 - }, - "minecraft:mangrove_stairs": { - "protocol_id": 459 - }, - "minecraft:mangrove_trapdoor": { - "protocol_id": 291 - }, - "minecraft:mangrove_wall_hanging_sign": { - "protocol_id": 225 - }, - "minecraft:mangrove_wall_sign": { - "protocol_id": 205 - }, - "minecraft:mangrove_wood": { - "protocol_id": 72 - }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 903 - }, - "minecraft:melon": { - "protocol_id": 311 - }, - "minecraft:melon_stem": { - "protocol_id": 315 - }, - "minecraft:moss_block": { - "protocol_id": 958 - }, - "minecraft:moss_carpet": { - "protocol_id": 956 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 168 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 746 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 732 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 353 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 744 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 730 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 758 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 294 - }, - "minecraft:moving_piston": { - "protocol_id": 145 - }, - "minecraft:mud": { - "protocol_id": 964 - }, - "minecraft:mud_brick_slab": { - "protocol_id": 556 - }, - "minecraft:mud_brick_stairs": { - "protocol_id": 321 - }, - "minecraft:mud_brick_wall": { - "protocol_id": 761 - }, - "minecraft:mud_bricks": { - "protocol_id": 298 - }, - "minecraft:muddy_mangrove_roots": { "protocol_id": 54 }, - "minecraft:mushroom_stem": { - "protocol_id": 307 + "minecraft:mangrove_sign": { + "protocol_id": 193 }, - "minecraft:mycelium": { - "protocol_id": 322 + "minecraft:mangrove_slab": { + "protocol_id": 546 }, - "minecraft:nether_brick_fence": { - "protocol_id": 325 + "minecraft:mangrove_stairs": { + "protocol_id": 460 }, - "minecraft:nether_brick_slab": { - "protocol_id": 557 + "minecraft:mangrove_trapdoor": { + "protocol_id": 292 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 326 + "minecraft:mangrove_wall_hanging_sign": { + "protocol_id": 226 }, - "minecraft:nether_brick_wall": { + "minecraft:mangrove_wall_sign": { + "protocol_id": 206 + }, + "minecraft:mangrove_wood": { + "protocol_id": 73 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 907 + }, + "minecraft:melon": { + "protocol_id": 312 + }, + "minecraft:melon_stem": { + "protocol_id": 316 + }, + "minecraft:moss_block": { + "protocol_id": 963 + }, + "minecraft:moss_carpet": { + "protocol_id": 961 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 169 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 750 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 736 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 354 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 748 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 734 + }, + "minecraft:mossy_stone_brick_wall": { "protocol_id": 762 }, - "minecraft:nether_bricks": { - "protocol_id": 324 + "minecraft:mossy_stone_bricks": { + "protocol_id": 295 }, - "minecraft:nether_gold_ore": { - "protocol_id": 44 + "minecraft:moving_piston": { + "protocol_id": 146 }, - "minecraft:nether_portal": { - "protocol_id": 263 + "minecraft:mud": { + "protocol_id": 969 }, - "minecraft:nether_quartz_ore": { - "protocol_id": 416 + "minecraft:mud_brick_slab": { + "protocol_id": 557 }, - "minecraft:nether_sprouts": { - "protocol_id": 793 + "minecraft:mud_brick_stairs": { + "protocol_id": 322 }, - "minecraft:nether_wart": { + "minecraft:mud_brick_wall": { + "protocol_id": 765 + }, + "minecraft:mud_bricks": { + "protocol_id": 299 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 55 + }, + "minecraft:mushroom_stem": { + "protocol_id": 308 + }, + "minecraft:mycelium": { + "protocol_id": 323 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 326 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 558 + }, + "minecraft:nether_brick_stairs": { "protocol_id": 327 }, + "minecraft:nether_brick_wall": { + "protocol_id": 766 + }, + "minecraft:nether_bricks": { + "protocol_id": 325 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 45 + }, + "minecraft:nether_portal": { + "protocol_id": 264 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 417 + }, + "minecraft:nether_sprouts": { + "protocol_id": 797 + }, + "minecraft:nether_wart": { + "protocol_id": 328 + }, "minecraft:nether_wart_block": { - "protocol_id": 605 + "protocol_id": 608 }, "minecraft:netherite_block": { - "protocol_id": 836 + "protocol_id": 840 }, "minecraft:netherrack": { - "protocol_id": 255 + "protocol_id": 256 }, "minecraft:note_block": { - "protocol_id": 101 + "protocol_id": 102 }, "minecraft:oak_button": { - "protocol_id": 384 + "protocol_id": 385 }, "minecraft:oak_door": { - "protocol_id": 194 + "protocol_id": 195 }, "minecraft:oak_fence": { - "protocol_id": 253 + "protocol_id": 254 }, "minecraft:oak_fence_gate": { - "protocol_id": 318 + "protocol_id": 319 }, "minecraft:oak_hanging_sign": { - "protocol_id": 207 + "protocol_id": 208 }, "minecraft:oak_leaves": { - "protocol_id": 81 + "protocol_id": 82 }, "minecraft:oak_log": { - "protocol_id": 45 + "protocol_id": 46 }, "minecraft:oak_planks": { "protocol_id": 13 }, "minecraft:oak_pressure_plate": { - "protocol_id": 232 + "protocol_id": 233 }, "minecraft:oak_sapling": { "protocol_id": 23 }, "minecraft:oak_sign": { - "protocol_id": 185 + "protocol_id": 186 }, "minecraft:oak_slab": { - "protocol_id": 538 + "protocol_id": 539 }, "minecraft:oak_stairs": { - "protocol_id": 175 + "protocol_id": 176 }, "minecraft:oak_trapdoor": { - "protocol_id": 284 + "protocol_id": 285 }, "minecraft:oak_wall_hanging_sign": { - "protocol_id": 218 + "protocol_id": 219 }, "minecraft:oak_wall_sign": { - "protocol_id": 198 + "protocol_id": 199 }, "minecraft:oak_wood": { - "protocol_id": 65 + "protocol_id": 66 }, "minecraft:observer": { - "protocol_id": 609 - }, - "minecraft:obsidian": { - "protocol_id": 169 - }, - "minecraft:ochre_froglight": { - "protocol_id": 992 - }, - "minecraft:orange_banner": { - "protocol_id": 503 - }, - "minecraft:orange_bed": { - "protocol_id": 103 - }, - "minecraft:orange_candle": { - "protocol_id": 867 - }, - "minecraft:orange_candle_cake": { - "protocol_id": 884 - }, - "minecraft:orange_carpet": { - "protocol_id": 478 - }, - "minecraft:orange_concrete": { - "protocol_id": 644 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 660 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 628 - }, - "minecraft:orange_shulker_box": { "protocol_id": 612 }, + "minecraft:obsidian": { + "protocol_id": 170 + }, + "minecraft:ochre_froglight": { + "protocol_id": 997 + }, + "minecraft:orange_banner": { + "protocol_id": 504 + }, + "minecraft:orange_bed": { + "protocol_id": 104 + }, + "minecraft:orange_candle": { + "protocol_id": 871 + }, + "minecraft:orange_candle_cake": { + "protocol_id": 888 + }, + "minecraft:orange_carpet": { + "protocol_id": 479 + }, + "minecraft:orange_concrete": { + "protocol_id": 647 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 663 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 631 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 615 + }, "minecraft:orange_stained_glass": { - "protocol_id": 269 + "protocol_id": 270 }, "minecraft:orange_stained_glass_pane": { - "protocol_id": 441 + "protocol_id": 442 }, "minecraft:orange_terracotta": { - "protocol_id": 425 + "protocol_id": 426 }, "minecraft:orange_tulip": { - "protocol_id": 153 + "protocol_id": 154 }, "minecraft:orange_wall_banner": { - "protocol_id": 519 + "protocol_id": 520 }, "minecraft:orange_wool": { - "protocol_id": 130 + "protocol_id": 131 }, "minecraft:oxeye_daisy": { - "protocol_id": 156 + "protocol_id": 157 }, "minecraft:oxidized_copper": { - "protocol_id": 914 + "protocol_id": 919 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 920 + "protocol_id": 925 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 928 + "protocol_id": 933 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 924 + "protocol_id": 929 }, "minecraft:packed_ice": { - "protocol_id": 495 + "protocol_id": 496 }, "minecraft:packed_mud": { - "protocol_id": 297 + "protocol_id": 298 }, "minecraft:pearlescent_froglight": { - "protocol_id": 994 + "protocol_id": 999 }, "minecraft:peony": { - "protocol_id": 499 + "protocol_id": 500 }, "minecraft:petrified_oak_slab": { - "protocol_id": 552 + "protocol_id": 553 }, "minecraft:piglin_head": { - "protocol_id": 405 - }, - "minecraft:piglin_wall_head": { "protocol_id": 406 }, + "minecraft:piglin_wall_head": { + "protocol_id": 407 + }, "minecraft:pink_banner": { - "protocol_id": 508 + "protocol_id": 509 }, "minecraft:pink_bed": { - "protocol_id": 108 + "protocol_id": 109 }, "minecraft:pink_candle": { - "protocol_id": 872 + "protocol_id": 876 }, "minecraft:pink_candle_cake": { - "protocol_id": 889 + "protocol_id": 893 }, "minecraft:pink_carpet": { - "protocol_id": 483 + "protocol_id": 484 }, "minecraft:pink_concrete": { - "protocol_id": 649 + "protocol_id": 652 }, "minecraft:pink_concrete_powder": { - "protocol_id": 665 + "protocol_id": 668 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 633 + "protocol_id": 636 }, "minecraft:pink_petals": { - "protocol_id": 957 + "protocol_id": 962 }, "minecraft:pink_shulker_box": { - "protocol_id": 617 + "protocol_id": 620 }, "minecraft:pink_stained_glass": { - "protocol_id": 274 + "protocol_id": 275 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 446 + "protocol_id": 447 }, "minecraft:pink_terracotta": { - "protocol_id": 430 + "protocol_id": 431 }, "minecraft:pink_tulip": { - "protocol_id": 155 + "protocol_id": 156 }, "minecraft:pink_wall_banner": { - "protocol_id": 524 + "protocol_id": 525 }, "minecraft:pink_wool": { - "protocol_id": 135 + "protocol_id": 136 }, "minecraft:piston": { - "protocol_id": 127 - }, - "minecraft:piston_head": { "protocol_id": 128 }, + "minecraft:piston_head": { + "protocol_id": 129 + }, + "minecraft:pitcher_crop": { + "protocol_id": 599 + }, + "minecraft:pitcher_plant": { + "protocol_id": 600 + }, "minecraft:player_head": { - "protocol_id": 399 + "protocol_id": 400 }, "minecraft:player_wall_head": { - "protocol_id": 400 + "protocol_id": 401 }, "minecraft:podzol": { "protocol_id": 11 }, "minecraft:pointed_dripstone": { - "protocol_id": 949 + "protocol_id": 954 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 753 + "protocol_id": 757 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 740 + "protocol_id": 744 }, "minecraft:polished_basalt": { - "protocol_id": 259 + "protocol_id": 260 }, "minecraft:polished_blackstone": { - "protocol_id": 849 - }, - "minecraft:polished_blackstone_brick_slab": { "protocol_id": 853 }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 854 - }, - "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 855 - }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 850 - }, - "minecraft:polished_blackstone_button": { - "protocol_id": 860 - }, - "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 859 - }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 858 - }, - "minecraft:polished_blackstone_stairs": { + "minecraft:polished_blackstone_brick_slab": { "protocol_id": 857 }, - "minecraft:polished_blackstone_wall": { + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 858 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 859 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 854 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 864 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 863 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 862 + }, + "minecraft:polished_blackstone_stairs": { "protocol_id": 861 }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 865 + }, "minecraft:polished_deepslate": { - "protocol_id": 970 + "protocol_id": 975 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 972 + "protocol_id": 977 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 971 + "protocol_id": 976 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 973 + "protocol_id": 978 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 745 + "protocol_id": 749 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 731 + "protocol_id": 735 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 742 + "protocol_id": 746 }, "minecraft:polished_granite_stairs": { - "protocol_id": 728 + "protocol_id": 732 }, "minecraft:poppy": { - "protocol_id": 148 + "protocol_id": 149 }, "minecraft:potatoes": { - "protocol_id": 383 + "protocol_id": 384 }, "minecraft:potted_acacia_sapling": { - "protocol_id": 360 - }, - "minecraft:potted_allium": { - "protocol_id": 368 - }, - "minecraft:potted_azalea_bush": { - "protocol_id": 990 - }, - "minecraft:potted_azure_bluet": { - "protocol_id": 369 - }, - "minecraft:potted_bamboo": { - "protocol_id": 724 - }, - "minecraft:potted_birch_sapling": { - "protocol_id": 358 - }, - "minecraft:potted_blue_orchid": { - "protocol_id": 367 - }, - "minecraft:potted_brown_mushroom": { - "protocol_id": 379 - }, - "minecraft:potted_cactus": { - "protocol_id": 381 - }, - "minecraft:potted_cherry_sapling": { "protocol_id": 361 }, - "minecraft:potted_cornflower": { - "protocol_id": 375 + "minecraft:potted_allium": { + "protocol_id": 369 }, - "minecraft:potted_crimson_fungus": { - "protocol_id": 840 + "minecraft:potted_azalea_bush": { + "protocol_id": 995 }, - "minecraft:potted_crimson_roots": { - "protocol_id": 842 - }, - "minecraft:potted_dandelion": { - "protocol_id": 365 - }, - "minecraft:potted_dark_oak_sapling": { - "protocol_id": 362 - }, - "minecraft:potted_dead_bush": { - "protocol_id": 380 - }, - "minecraft:potted_fern": { - "protocol_id": 364 - }, - "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 991 - }, - "minecraft:potted_jungle_sapling": { - "protocol_id": 359 - }, - "minecraft:potted_lily_of_the_valley": { - "protocol_id": 376 - }, - "minecraft:potted_mangrove_propagule": { - "protocol_id": 363 - }, - "minecraft:potted_oak_sapling": { - "protocol_id": 356 - }, - "minecraft:potted_orange_tulip": { - "protocol_id": 371 - }, - "minecraft:potted_oxeye_daisy": { - "protocol_id": 374 - }, - "minecraft:potted_pink_tulip": { - "protocol_id": 373 - }, - "minecraft:potted_poppy": { - "protocol_id": 366 - }, - "minecraft:potted_red_mushroom": { - "protocol_id": 378 - }, - "minecraft:potted_red_tulip": { + "minecraft:potted_azure_bluet": { "protocol_id": 370 }, - "minecraft:potted_spruce_sapling": { - "protocol_id": 357 + "minecraft:potted_bamboo": { + "protocol_id": 728 }, - "minecraft:potted_torchflower": { - "protocol_id": 355 + "minecraft:potted_birch_sapling": { + "protocol_id": 359 }, - "minecraft:potted_warped_fungus": { - "protocol_id": 841 + "minecraft:potted_blue_orchid": { + "protocol_id": 368 }, - "minecraft:potted_warped_roots": { - "protocol_id": 843 + "minecraft:potted_brown_mushroom": { + "protocol_id": 380 }, - "minecraft:potted_white_tulip": { - "protocol_id": 372 + "minecraft:potted_cactus": { + "protocol_id": 382 }, - "minecraft:potted_wither_rose": { + "minecraft:potted_cherry_sapling": { + "protocol_id": 362 + }, + "minecraft:potted_cornflower": { + "protocol_id": 376 + }, + "minecraft:potted_crimson_fungus": { + "protocol_id": 844 + }, + "minecraft:potted_crimson_roots": { + "protocol_id": 846 + }, + "minecraft:potted_dandelion": { + "protocol_id": 366 + }, + "minecraft:potted_dark_oak_sapling": { + "protocol_id": 363 + }, + "minecraft:potted_dead_bush": { + "protocol_id": 381 + }, + "minecraft:potted_fern": { + "protocol_id": 365 + }, + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 996 + }, + "minecraft:potted_jungle_sapling": { + "protocol_id": 360 + }, + "minecraft:potted_lily_of_the_valley": { "protocol_id": 377 }, + "minecraft:potted_mangrove_propagule": { + "protocol_id": 364 + }, + "minecraft:potted_oak_sapling": { + "protocol_id": 357 + }, + "minecraft:potted_orange_tulip": { + "protocol_id": 372 + }, + "minecraft:potted_oxeye_daisy": { + "protocol_id": 375 + }, + "minecraft:potted_pink_tulip": { + "protocol_id": 374 + }, + "minecraft:potted_poppy": { + "protocol_id": 367 + }, + "minecraft:potted_red_mushroom": { + "protocol_id": 379 + }, + "minecraft:potted_red_tulip": { + "protocol_id": 371 + }, + "minecraft:potted_spruce_sapling": { + "protocol_id": 358 + }, + "minecraft:potted_torchflower": { + "protocol_id": 356 + }, + "minecraft:potted_warped_fungus": { + "protocol_id": 845 + }, + "minecraft:potted_warped_roots": { + "protocol_id": 847 + }, + "minecraft:potted_white_tulip": { + "protocol_id": 373 + }, + "minecraft:potted_wither_rose": { + "protocol_id": 378 + }, "minecraft:powder_snow": { - "protocol_id": 908 + "protocol_id": 912 }, "minecraft:powder_snow_cauldron": { - "protocol_id": 333 + "protocol_id": 334 }, "minecraft:powered_rail": { - "protocol_id": 118 + "protocol_id": 119 }, "minecraft:prismarine": { - "protocol_id": 466 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 473 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 470 - }, - "minecraft:prismarine_bricks": { "protocol_id": 467 }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 474 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 471 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 468 + }, "minecraft:prismarine_slab": { - "protocol_id": 472 + "protocol_id": 473 }, "minecraft:prismarine_stairs": { - "protocol_id": 469 + "protocol_id": 470 }, "minecraft:prismarine_wall": { - "protocol_id": 756 + "protocol_id": 760 }, "minecraft:pumpkin": { - "protocol_id": 254 + "protocol_id": 255 }, "minecraft:pumpkin_stem": { - "protocol_id": 314 + "protocol_id": 315 }, "minecraft:purple_banner": { - "protocol_id": 512 + "protocol_id": 513 }, "minecraft:purple_bed": { - "protocol_id": 112 + "protocol_id": 113 }, "minecraft:purple_candle": { - "protocol_id": 876 - }, - "minecraft:purple_candle_cake": { - "protocol_id": 893 - }, - "minecraft:purple_carpet": { - "protocol_id": 487 - }, - "minecraft:purple_concrete": { - "protocol_id": 653 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 669 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 637 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 621 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 278 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 450 - }, - "minecraft:purple_terracotta": { - "protocol_id": 434 - }, - "minecraft:purple_wall_banner": { - "protocol_id": 528 - }, - "minecraft:purple_wool": { - "protocol_id": 139 - }, - "minecraft:purpur_block": { - "protocol_id": 593 - }, - "minecraft:purpur_pillar": { - "protocol_id": 594 - }, - "minecraft:purpur_slab": { - "protocol_id": 561 - }, - "minecraft:purpur_stairs": { - "protocol_id": 595 - }, - "minecraft:quartz_block": { - "protocol_id": 418 - }, - "minecraft:quartz_bricks": { - "protocol_id": 864 - }, - "minecraft:quartz_pillar": { - "protocol_id": 420 - }, - "minecraft:quartz_slab": { - "protocol_id": 558 - }, - "minecraft:quartz_stairs": { - "protocol_id": 421 - }, - "minecraft:rail": { - "protocol_id": 196 - }, - "minecraft:raw_copper_block": { - "protocol_id": 988 - }, - "minecraft:raw_gold_block": { - "protocol_id": 989 - }, - "minecraft:raw_iron_block": { - "protocol_id": 987 - }, - "minecraft:red_banner": { - "protocol_id": 516 - }, - "minecraft:red_bed": { - "protocol_id": 116 - }, - "minecraft:red_candle": { "protocol_id": 880 }, - "minecraft:red_candle_cake": { + "minecraft:purple_candle_cake": { "protocol_id": 897 }, + "minecraft:purple_carpet": { + "protocol_id": 488 + }, + "minecraft:purple_concrete": { + "protocol_id": 656 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 672 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 640 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 624 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 279 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 451 + }, + "minecraft:purple_terracotta": { + "protocol_id": 435 + }, + "minecraft:purple_wall_banner": { + "protocol_id": 529 + }, + "minecraft:purple_wool": { + "protocol_id": 140 + }, + "minecraft:purpur_block": { + "protocol_id": 594 + }, + "minecraft:purpur_pillar": { + "protocol_id": 595 + }, + "minecraft:purpur_slab": { + "protocol_id": 562 + }, + "minecraft:purpur_stairs": { + "protocol_id": 596 + }, + "minecraft:quartz_block": { + "protocol_id": 419 + }, + "minecraft:quartz_bricks": { + "protocol_id": 868 + }, + "minecraft:quartz_pillar": { + "protocol_id": 421 + }, + "minecraft:quartz_slab": { + "protocol_id": 559 + }, + "minecraft:quartz_stairs": { + "protocol_id": 422 + }, + "minecraft:rail": { + "protocol_id": 197 + }, + "minecraft:raw_copper_block": { + "protocol_id": 993 + }, + "minecraft:raw_gold_block": { + "protocol_id": 994 + }, + "minecraft:raw_iron_block": { + "protocol_id": 992 + }, + "minecraft:red_banner": { + "protocol_id": 517 + }, + "minecraft:red_bed": { + "protocol_id": 117 + }, + "minecraft:red_candle": { + "protocol_id": 884 + }, + "minecraft:red_candle_cake": { + "protocol_id": 901 + }, "minecraft:red_carpet": { - "protocol_id": 491 + "protocol_id": 492 }, "minecraft:red_concrete": { - "protocol_id": 657 + "protocol_id": 660 }, "minecraft:red_concrete_powder": { - "protocol_id": 673 + "protocol_id": 676 }, "minecraft:red_glazed_terracotta": { - "protocol_id": 641 + "protocol_id": 644 }, "minecraft:red_mushroom": { - "protocol_id": 161 + "protocol_id": 162 }, "minecraft:red_mushroom_block": { - "protocol_id": 306 + "protocol_id": 307 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 752 + "protocol_id": 756 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 739 + "protocol_id": 743 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 764 + "protocol_id": 768 }, "minecraft:red_nether_bricks": { - "protocol_id": 606 + "protocol_id": 609 }, "minecraft:red_sand": { "protocol_id": 36 }, "minecraft:red_sandstone": { - "protocol_id": 534 + "protocol_id": 535 }, "minecraft:red_sandstone_slab": { - "protocol_id": 559 + "protocol_id": 560 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 537 + "protocol_id": 538 }, "minecraft:red_sandstone_wall": { - "protocol_id": 757 + "protocol_id": 761 }, "minecraft:red_shulker_box": { - "protocol_id": 625 + "protocol_id": 628 }, "minecraft:red_stained_glass": { - "protocol_id": 282 + "protocol_id": 283 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 454 + "protocol_id": 455 }, "minecraft:red_terracotta": { - "protocol_id": 438 + "protocol_id": 439 }, "minecraft:red_tulip": { - "protocol_id": 152 + "protocol_id": 153 }, "minecraft:red_wall_banner": { - "protocol_id": 532 + "protocol_id": 533 }, "minecraft:red_wool": { - "protocol_id": 143 + "protocol_id": 144 }, "minecraft:redstone_block": { - "protocol_id": 415 + "protocol_id": 416 }, "minecraft:redstone_lamp": { - "protocol_id": 338 + "protocol_id": 339 }, "minecraft:redstone_ore": { - "protocol_id": 241 + "protocol_id": 242 }, "minecraft:redstone_torch": { - "protocol_id": 243 - }, - "minecraft:redstone_wall_torch": { "protocol_id": 244 }, + "minecraft:redstone_wall_torch": { + "protocol_id": 245 + }, "minecraft:redstone_wire": { - "protocol_id": 177 + "protocol_id": 178 }, "minecraft:reinforced_deepslate": { - "protocol_id": 996 + "protocol_id": 1001 }, "minecraft:repeater": { - "protocol_id": 267 + "protocol_id": 268 }, "minecraft:repeating_command_block": { - "protocol_id": 601 + "protocol_id": 604 }, "minecraft:respawn_anchor": { - "protocol_id": 839 + "protocol_id": 843 }, "minecraft:rooted_dirt": { - "protocol_id": 963 + "protocol_id": 968 }, "minecraft:rose_bush": { - "protocol_id": 498 + "protocol_id": 499 }, "minecraft:sand": { "protocol_id": 34 }, "minecraft:sandstone": { - "protocol_id": 98 + "protocol_id": 99 }, "minecraft:sandstone_slab": { - "protocol_id": 550 + "protocol_id": 551 }, "minecraft:sandstone_stairs": { - "protocol_id": 340 + "protocol_id": 341 }, "minecraft:sandstone_wall": { - "protocol_id": 765 + "protocol_id": 769 }, "minecraft:scaffolding": { - "protocol_id": 768 + "protocol_id": 772 }, "minecraft:sculk": { - "protocol_id": 910 + "protocol_id": 915 }, "minecraft:sculk_catalyst": { - "protocol_id": 912 + "protocol_id": 917 }, "minecraft:sculk_sensor": { - "protocol_id": 909 - }, - "minecraft:sculk_shrieker": { "protocol_id": 913 }, + "minecraft:sculk_shrieker": { + "protocol_id": 918 + }, "minecraft:sculk_vein": { - "protocol_id": 911 + "protocol_id": 916 }, "minecraft:sea_lantern": { - "protocol_id": 475 + "protocol_id": 476 }, "minecraft:sea_pickle": { - "protocol_id": 719 + "protocol_id": 723 }, "minecraft:seagrass": { - "protocol_id": 125 + "protocol_id": 126 }, "minecraft:shroomlight": { - "protocol_id": 800 + "protocol_id": 804 }, "minecraft:shulker_box": { - "protocol_id": 610 + "protocol_id": 613 }, "minecraft:skeleton_skull": { - "protocol_id": 393 - }, - "minecraft:skeleton_wall_skull": { "protocol_id": 394 }, + "minecraft:skeleton_wall_skull": { + "protocol_id": 395 + }, "minecraft:slime_block": { - "protocol_id": 462 + "protocol_id": 463 }, "minecraft:small_amethyst_bud": { - "protocol_id": 904 + "protocol_id": 908 }, "minecraft:small_dripleaf": { - "protocol_id": 961 + "protocol_id": 966 }, "minecraft:smithing_table": { - "protocol_id": 777 - }, - "minecraft:smoker": { - "protocol_id": 771 - }, - "minecraft:smooth_basalt": { - "protocol_id": 986 - }, - "minecraft:smooth_quartz": { - "protocol_id": 564 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 749 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 736 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 565 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 743 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 729 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 563 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 748 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 735 - }, - "minecraft:smooth_stone": { - "protocol_id": 562 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 549 - }, - "minecraft:snow": { - "protocol_id": 246 - }, - "minecraft:snow_block": { - "protocol_id": 248 - }, - "minecraft:soul_campfire": { - "protocol_id": 783 - }, - "minecraft:soul_fire": { - "protocol_id": 173 - }, - "minecraft:soul_lantern": { "protocol_id": 781 }, - "minecraft:soul_sand": { - "protocol_id": 256 + "minecraft:smoker": { + "protocol_id": 775 }, - "minecraft:soul_soil": { - "protocol_id": 257 + "minecraft:smooth_basalt": { + "protocol_id": 991 }, - "minecraft:soul_torch": { - "protocol_id": 260 + "minecraft:smooth_quartz": { + "protocol_id": 565 }, - "minecraft:soul_wall_torch": { - "protocol_id": 261 + "minecraft:smooth_quartz_slab": { + "protocol_id": 753 }, - "minecraft:spawner": { - "protocol_id": 174 + "minecraft:smooth_quartz_stairs": { + "protocol_id": 740 }, - "minecraft:sponge": { - "protocol_id": 91 - }, - "minecraft:spore_blossom": { - "protocol_id": 953 - }, - "minecraft:spruce_button": { - "protocol_id": 385 - }, - "minecraft:spruce_door": { - "protocol_id": 582 - }, - "minecraft:spruce_fence": { - "protocol_id": 574 - }, - "minecraft:spruce_fence_gate": { + "minecraft:smooth_red_sandstone": { "protocol_id": 566 }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 747 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 733 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 564 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 752 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 739 + }, + "minecraft:smooth_stone": { + "protocol_id": 563 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 550 + }, + "minecraft:sniffer_egg": { + "protocol_id": 682 + }, + "minecraft:snow": { + "protocol_id": 247 + }, + "minecraft:snow_block": { + "protocol_id": 249 + }, + "minecraft:soul_campfire": { + "protocol_id": 787 + }, + "minecraft:soul_fire": { + "protocol_id": 174 + }, + "minecraft:soul_lantern": { + "protocol_id": 785 + }, + "minecraft:soul_sand": { + "protocol_id": 257 + }, + "minecraft:soul_soil": { + "protocol_id": 258 + }, + "minecraft:soul_torch": { + "protocol_id": 261 + }, + "minecraft:soul_wall_torch": { + "protocol_id": 262 + }, + "minecraft:spawner": { + "protocol_id": 175 + }, + "minecraft:sponge": { + "protocol_id": 92 + }, + "minecraft:spore_blossom": { + "protocol_id": 958 + }, + "minecraft:spruce_button": { + "protocol_id": 386 + }, + "minecraft:spruce_door": { + "protocol_id": 583 + }, + "minecraft:spruce_fence": { + "protocol_id": 575 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 567 + }, "minecraft:spruce_hanging_sign": { - "protocol_id": 208 + "protocol_id": 209 }, "minecraft:spruce_leaves": { - "protocol_id": 82 + "protocol_id": 83 }, "minecraft:spruce_log": { - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:spruce_planks": { "protocol_id": 14 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 233 + "protocol_id": 234 }, "minecraft:spruce_sapling": { "protocol_id": 24 }, "minecraft:spruce_sign": { - "protocol_id": 186 + "protocol_id": 187 }, "minecraft:spruce_slab": { - "protocol_id": 539 + "protocol_id": 540 }, "minecraft:spruce_stairs": { - "protocol_id": 347 + "protocol_id": 348 }, "minecraft:spruce_trapdoor": { - "protocol_id": 285 + "protocol_id": 286 }, "minecraft:spruce_wall_hanging_sign": { - "protocol_id": 219 + "protocol_id": 220 }, "minecraft:spruce_wall_sign": { - "protocol_id": 199 + "protocol_id": 200 }, "minecraft:spruce_wood": { - "protocol_id": 66 + "protocol_id": 67 }, "minecraft:sticky_piston": { - "protocol_id": 120 + "protocol_id": 121 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_brick_slab": { - "protocol_id": 555 + "protocol_id": 556 }, "minecraft:stone_brick_stairs": { - "protocol_id": 320 + "protocol_id": 321 }, "minecraft:stone_brick_wall": { - "protocol_id": 760 + "protocol_id": 764 }, "minecraft:stone_bricks": { - "protocol_id": 293 + "protocol_id": 294 }, "minecraft:stone_button": { - "protocol_id": 245 + "protocol_id": 246 }, "minecraft:stone_pressure_plate": { - "protocol_id": 230 + "protocol_id": 231 }, "minecraft:stone_slab": { - "protocol_id": 548 + "protocol_id": 549 }, "minecraft:stone_stairs": { - "protocol_id": 734 + "protocol_id": 738 }, "minecraft:stonecutter": { - "protocol_id": 778 + "protocol_id": 782 }, "minecraft:stripped_acacia_log": { - "protocol_id": 59 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 77 - }, - "minecraft:stripped_bamboo_block": { - "protocol_id": 64 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 57 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 75 - }, - "minecraft:stripped_cherry_log": { "protocol_id": 60 }, - "minecraft:stripped_cherry_wood": { + "minecraft:stripped_acacia_wood": { "protocol_id": 78 }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 797 + "minecraft:stripped_bamboo_block": { + "protocol_id": 65 }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 795 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 61 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 79 - }, - "minecraft:stripped_jungle_log": { + "minecraft:stripped_birch_log": { "protocol_id": 58 }, - "minecraft:stripped_jungle_wood": { + "minecraft:stripped_birch_wood": { "protocol_id": 76 }, - "minecraft:stripped_mangrove_log": { - "protocol_id": 63 + "minecraft:stripped_cherry_log": { + "protocol_id": 61 }, - "minecraft:stripped_mangrove_wood": { - "protocol_id": 80 + "minecraft:stripped_cherry_wood": { + "protocol_id": 79 }, - "minecraft:stripped_oak_log": { + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 801 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 799 + }, + "minecraft:stripped_dark_oak_log": { "protocol_id": 62 }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 80 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 59 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 77 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 64 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 81 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 63 + }, "minecraft:stripped_oak_wood": { - "protocol_id": 73 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 56 - }, - "minecraft:stripped_spruce_wood": { "protocol_id": 74 }, + "minecraft:stripped_spruce_log": { + "protocol_id": 57 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 75 + }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 788 + "protocol_id": 792 }, "minecraft:stripped_warped_stem": { - "protocol_id": 786 + "protocol_id": 790 }, "minecraft:structure_block": { - "protocol_id": 828 + "protocol_id": 832 }, "minecraft:structure_void": { - "protocol_id": 608 + "protocol_id": 611 }, "minecraft:sugar_cane": { - "protocol_id": 251 + "protocol_id": 252 }, "minecraft:sunflower": { - "protocol_id": 496 + "protocol_id": 497 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 38 }, "minecraft:suspicious_sand": { "protocol_id": 35 }, "minecraft:sweet_berry_bush": { - "protocol_id": 784 + "protocol_id": 788 }, "minecraft:tall_grass": { - "protocol_id": 500 + "protocol_id": 501 }, "minecraft:tall_seagrass": { - "protocol_id": 126 + "protocol_id": 127 }, "minecraft:target": { - "protocol_id": 831 + "protocol_id": 835 }, "minecraft:terracotta": { - "protocol_id": 493 + "protocol_id": 494 }, "minecraft:tinted_glass": { - "protocol_id": 907 + "protocol_id": 911 }, "minecraft:tnt": { - "protocol_id": 165 + "protocol_id": 166 }, "minecraft:torch": { - "protocol_id": 170 - }, - "minecraft:torchflower": { - "protocol_id": 147 - }, - "minecraft:torchflower_crop": { - "protocol_id": 597 - }, - "minecraft:trapped_chest": { - "protocol_id": 410 - }, - "minecraft:tripwire": { - "protocol_id": 345 - }, - "minecraft:tripwire_hook": { - "protocol_id": 344 - }, - "minecraft:tube_coral": { - "protocol_id": 694 - }, - "minecraft:tube_coral_block": { - "protocol_id": 684 - }, - "minecraft:tube_coral_fan": { - "protocol_id": 704 - }, - "minecraft:tube_coral_wall_fan": { - "protocol_id": 714 - }, - "minecraft:tuff": { - "protocol_id": 905 - }, - "minecraft:turtle_egg": { - "protocol_id": 678 - }, - "minecraft:twisting_vines": { - "protocol_id": 803 - }, - "minecraft:twisting_vines_plant": { - "protocol_id": 804 - }, - "minecraft:verdant_froglight": { - "protocol_id": 993 - }, - "minecraft:vine": { - "protocol_id": 316 - }, - "minecraft:void_air": { - "protocol_id": 725 - }, - "minecraft:wall_torch": { "protocol_id": 171 }, - "minecraft:warped_button": { - "protocol_id": 821 + "minecraft:torchflower": { + "protocol_id": 148 }, - "minecraft:warped_door": { - "protocol_id": 823 + "minecraft:torchflower_crop": { + "protocol_id": 598 }, - "minecraft:warped_fence": { - "protocol_id": 813 + "minecraft:trapped_chest": { + "protocol_id": 411 }, - "minecraft:warped_fence_gate": { - "protocol_id": 817 + "minecraft:tripwire": { + "protocol_id": 346 }, - "minecraft:warped_fungus": { - "protocol_id": 790 + "minecraft:tripwire_hook": { + "protocol_id": 345 }, - "minecraft:warped_hanging_sign": { - "protocol_id": 215 + "minecraft:tube_coral": { + "protocol_id": 698 }, - "minecraft:warped_hyphae": { - "protocol_id": 787 + "minecraft:tube_coral_block": { + "protocol_id": 688 }, - "minecraft:warped_nylium": { - "protocol_id": 789 + "minecraft:tube_coral_fan": { + "protocol_id": 708 }, - "minecraft:warped_planks": { + "minecraft:tube_coral_wall_fan": { + "protocol_id": 718 + }, + "minecraft:tuff": { + "protocol_id": 909 + }, + "minecraft:turtle_egg": { + "protocol_id": 681 + }, + "minecraft:twisting_vines": { "protocol_id": 807 }, - "minecraft:warped_pressure_plate": { - "protocol_id": 811 + "minecraft:twisting_vines_plant": { + "protocol_id": 808 }, - "minecraft:warped_roots": { - "protocol_id": 792 + "minecraft:verdant_froglight": { + "protocol_id": 998 }, - "minecraft:warped_sign": { + "minecraft:vine": { + "protocol_id": 317 + }, + "minecraft:void_air": { + "protocol_id": 729 + }, + "minecraft:wall_torch": { + "protocol_id": 172 + }, + "minecraft:warped_button": { "protocol_id": 825 }, - "minecraft:warped_slab": { - "protocol_id": 809 - }, - "minecraft:warped_stairs": { - "protocol_id": 819 - }, - "minecraft:warped_stem": { - "protocol_id": 785 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 815 - }, - "minecraft:warped_wall_hanging_sign": { - "protocol_id": 227 - }, - "minecraft:warped_wall_sign": { + "minecraft:warped_door": { "protocol_id": 827 }, - "minecraft:warped_wart_block": { + "minecraft:warped_fence": { + "protocol_id": 817 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 821 + }, + "minecraft:warped_fungus": { + "protocol_id": 794 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 216 + }, + "minecraft:warped_hyphae": { "protocol_id": 791 }, + "minecraft:warped_nylium": { + "protocol_id": 793 + }, + "minecraft:warped_planks": { + "protocol_id": 811 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 815 + }, + "minecraft:warped_roots": { + "protocol_id": 796 + }, + "minecraft:warped_sign": { + "protocol_id": 829 + }, + "minecraft:warped_slab": { + "protocol_id": 813 + }, + "minecraft:warped_stairs": { + "protocol_id": 823 + }, + "minecraft:warped_stem": { + "protocol_id": 789 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 819 + }, + "minecraft:warped_wall_hanging_sign": { + "protocol_id": 228 + }, + "minecraft:warped_wall_sign": { + "protocol_id": 831 + }, + "minecraft:warped_wart_block": { + "protocol_id": 795 + }, "minecraft:water": { "protocol_id": 32 }, "minecraft:water_cauldron": { - "protocol_id": 331 + "protocol_id": 332 }, "minecraft:waxed_copper_block": { - "protocol_id": 932 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 939 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 947 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 943 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 934 - }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 938 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 946 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 942 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 935 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 936 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 944 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 940 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 933 - }, - "minecraft:waxed_weathered_cut_copper": { "protocol_id": 937 }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 945 + "minecraft:waxed_cut_copper": { + "protocol_id": 944 }, - "minecraft:waxed_weathered_cut_copper_stairs": { + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 952 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 948 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 939 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 943 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 951 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 947 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 940 + }, + "minecraft:waxed_oxidized_cut_copper": { "protocol_id": 941 }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 949 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 945 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 938 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 942 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 950 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 946 + }, "minecraft:weathered_copper": { - "protocol_id": 915 + "protocol_id": 920 }, "minecraft:weathered_cut_copper": { - "protocol_id": 921 + "protocol_id": 926 }, "minecraft:weathered_cut_copper_slab": { - "protocol_id": 929 + "protocol_id": 934 }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 925 + "protocol_id": 930 }, "minecraft:weeping_vines": { - "protocol_id": 801 + "protocol_id": 805 }, "minecraft:weeping_vines_plant": { - "protocol_id": 802 + "protocol_id": 806 }, "minecraft:wet_sponge": { - "protocol_id": 92 + "protocol_id": 93 }, "minecraft:wheat": { - "protocol_id": 182 + "protocol_id": 183 }, "minecraft:white_banner": { - "protocol_id": 502 + "protocol_id": 503 }, "minecraft:white_bed": { - "protocol_id": 102 + "protocol_id": 103 }, "minecraft:white_candle": { - "protocol_id": 866 - }, - "minecraft:white_candle_cake": { - "protocol_id": 883 - }, - "minecraft:white_carpet": { - "protocol_id": 477 - }, - "minecraft:white_concrete": { - "protocol_id": 643 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 659 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 627 - }, - "minecraft:white_shulker_box": { - "protocol_id": 611 - }, - "minecraft:white_stained_glass": { - "protocol_id": 268 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 440 - }, - "minecraft:white_terracotta": { - "protocol_id": 424 - }, - "minecraft:white_tulip": { - "protocol_id": 154 - }, - "minecraft:white_wall_banner": { - "protocol_id": 518 - }, - "minecraft:white_wool": { - "protocol_id": 129 - }, - "minecraft:wither_rose": { - "protocol_id": 158 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 395 - }, - "minecraft:wither_skeleton_wall_skull": { - "protocol_id": 396 - }, - "minecraft:yellow_banner": { - "protocol_id": 506 - }, - "minecraft:yellow_bed": { - "protocol_id": 106 - }, - "minecraft:yellow_candle": { "protocol_id": 870 }, - "minecraft:yellow_candle_cake": { + "minecraft:white_candle_cake": { "protocol_id": 887 }, - "minecraft:yellow_carpet": { - "protocol_id": 481 + "minecraft:white_carpet": { + "protocol_id": 478 }, - "minecraft:yellow_concrete": { - "protocol_id": 647 + "minecraft:white_concrete": { + "protocol_id": 646 }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 663 + "minecraft:white_concrete_powder": { + "protocol_id": 662 }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 631 + "minecraft:white_glazed_terracotta": { + "protocol_id": 630 }, - "minecraft:yellow_shulker_box": { - "protocol_id": 615 + "minecraft:white_shulker_box": { + "protocol_id": 614 }, - "minecraft:yellow_stained_glass": { - "protocol_id": 272 + "minecraft:white_stained_glass": { + "protocol_id": 269 }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 444 + "minecraft:white_stained_glass_pane": { + "protocol_id": 441 }, - "minecraft:yellow_terracotta": { - "protocol_id": 428 + "minecraft:white_terracotta": { + "protocol_id": 425 }, - "minecraft:yellow_wall_banner": { - "protocol_id": 522 + "minecraft:white_tulip": { + "protocol_id": 155 }, - "minecraft:yellow_wool": { - "protocol_id": 133 + "minecraft:white_wall_banner": { + "protocol_id": 519 }, - "minecraft:zombie_head": { + "minecraft:white_wool": { + "protocol_id": 130 + }, + "minecraft:wither_rose": { + "protocol_id": 159 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 396 + }, + "minecraft:wither_skeleton_wall_skull": { "protocol_id": 397 }, - "minecraft:zombie_wall_head": { + "minecraft:yellow_banner": { + "protocol_id": 507 + }, + "minecraft:yellow_bed": { + "protocol_id": 107 + }, + "minecraft:yellow_candle": { + "protocol_id": 874 + }, + "minecraft:yellow_candle_cake": { + "protocol_id": 891 + }, + "minecraft:yellow_carpet": { + "protocol_id": 482 + }, + "minecraft:yellow_concrete": { + "protocol_id": 650 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 666 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 634 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 618 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 273 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 445 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 429 + }, + "minecraft:yellow_wall_banner": { + "protocol_id": 523 + }, + "minecraft:yellow_wool": { + "protocol_id": 134 + }, + "minecraft:zombie_head": { "protocol_id": 398 + }, + "minecraft:zombie_wall_head": { + "protocol_id": 399 } }, "protocol_id": 4 @@ -3280,6 +3295,12 @@ "minecraft:brewing_stand": { "protocol_id": 11 }, + "minecraft:brushable_block": { + "protocol_id": 39 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 35 + }, "minecraft:campfire": { "protocol_id": 32 }, @@ -3287,7 +3308,7 @@ "protocol_id": 1 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 37 + "protocol_id": 38 }, "minecraft:command_block": { "protocol_id": 22 @@ -3302,7 +3323,7 @@ "protocol_id": 16 }, "minecraft:decorated_pot": { - "protocol_id": 39 + "protocol_id": 40 }, "minecraft:dispenser": { "protocol_id": 5 @@ -3347,13 +3368,13 @@ "protocol_id": 10 }, "minecraft:sculk_catalyst": { - "protocol_id": 35 + "protocol_id": 36 }, "minecraft:sculk_sensor": { "protocol_id": 34 }, "minecraft:sculk_shrieker": { - "protocol_id": 36 + "protocol_id": 37 }, "minecraft:shulker_box": { "protocol_id": 23 @@ -3370,9 +3391,6 @@ "minecraft:structure_block": { "protocol_id": 20 }, - "minecraft:suspicious_sand": { - "protocol_id": 38 - }, "minecraft:trapped_chest": { "protocol_id": 2 } @@ -3418,7 +3436,7 @@ "protocol_id": 6 } }, - "protocol_id": 39 + "protocol_id": 40 }, "minecraft:cat_variant": { "entries": { @@ -3456,7 +3474,7 @@ "protocol_id": 8 } }, - "protocol_id": 59 + "protocol_id": 60 }, "minecraft:chunk_status": { "default": "minecraft:empty", @@ -3471,20 +3489,17 @@ "protocol_id": 0 }, "minecraft:features": { - "protocol_id": 8 + "protocol_id": 7 }, "minecraft:full": { - "protocol_id": 12 - }, - "minecraft:heightmaps": { "protocol_id": 11 }, + "minecraft:initialize_light": { + "protocol_id": 8 + }, "minecraft:light": { "protocol_id": 9 }, - "minecraft:liquid_carvers": { - "protocol_id": 7 - }, "minecraft:noise": { "protocol_id": 4 }, @@ -3653,7 +3668,54 @@ "protocol_id": 10 } }, - "protocol_id": 21 + "protocol_id": 22 + }, + "minecraft:creative_mode_tab": { + "entries": { + "minecraft:building_blocks": { + "protocol_id": 0 + }, + "minecraft:colored_blocks": { + "protocol_id": 1 + }, + "minecraft:combat": { + "protocol_id": 8 + }, + "minecraft:food_and_drinks": { + "protocol_id": 9 + }, + "minecraft:functional_blocks": { + "protocol_id": 3 + }, + "minecraft:hotbar": { + "protocol_id": 5 + }, + "minecraft:ingredients": { + "protocol_id": 10 + }, + "minecraft:inventory": { + "protocol_id": 13 + }, + "minecraft:natural_blocks": { + "protocol_id": 2 + }, + "minecraft:op_blocks": { + "protocol_id": 12 + }, + "minecraft:redstone_blocks": { + "protocol_id": 4 + }, + "minecraft:search": { + "protocol_id": 6 + }, + "minecraft:spawn_eggs": { + "protocol_id": 11 + }, + "minecraft:tools_and_utilities": { + "protocol_id": 7 + } + }, + "protocol_id": 65 }, "minecraft:custom_stat": { "entries": { @@ -3887,26 +3949,74 @@ }, "minecraft:decorated_pot_patterns": { "entries": { - "minecraft:decorated_pot_base": { - "protocol_id": 5 - }, - "minecraft:decorated_pot_side": { - "protocol_id": 4 - }, - "minecraft:pottery_pattern_archer": { - "protocol_id": 0 - }, - "minecraft:pottery_pattern_arms_up": { - "protocol_id": 2 - }, - "minecraft:pottery_pattern_prize": { + "minecraft:angler_pottery_pattern": { "protocol_id": 1 }, - "minecraft:pottery_pattern_skull": { + "minecraft:archer_pottery_pattern": { + "protocol_id": 2 + }, + "minecraft:arms_up_pottery_pattern": { "protocol_id": 3 + }, + "minecraft:blade_pottery_pattern": { + "protocol_id": 4 + }, + "minecraft:brewer_pottery_pattern": { + "protocol_id": 5 + }, + "minecraft:burn_pottery_pattern": { + "protocol_id": 6 + }, + "minecraft:danger_pottery_pattern": { + "protocol_id": 7 + }, + "minecraft:decorated_pot_base": { + "protocol_id": 21 + }, + "minecraft:decorated_pot_side": { + "protocol_id": 0 + }, + "minecraft:explorer_pottery_pattern": { + "protocol_id": 8 + }, + "minecraft:friend_pottery_pattern": { + "protocol_id": 9 + }, + "minecraft:heart_pottery_pattern": { + "protocol_id": 10 + }, + "minecraft:heartbreak_pottery_pattern": { + "protocol_id": 11 + }, + "minecraft:howl_pottery_pattern": { + "protocol_id": 12 + }, + "minecraft:miner_pottery_pattern": { + "protocol_id": 13 + }, + "minecraft:mourner_pottery_pattern": { + "protocol_id": 14 + }, + "minecraft:plenty_pottery_pattern": { + "protocol_id": 15 + }, + "minecraft:prize_pottery_pattern": { + "protocol_id": 16 + }, + "minecraft:sheaf_pottery_pattern": { + "protocol_id": 17 + }, + "minecraft:shelter_pottery_pattern": { + "protocol_id": 18 + }, + "minecraft:skull_pottery_pattern": { + "protocol_id": 19 + }, + "minecraft:snort_pottery_pattern": { + "protocol_id": 20 } }, - "protocol_id": 63 + "protocol_id": 64 }, "minecraft:enchantment": { "entries": { @@ -4423,7 +4533,7 @@ "protocol_id": 1 } }, - "protocol_id": 36 + "protocol_id": 37 }, "minecraft:fluid": { "default": "minecraft:empty", @@ -4458,7 +4568,7 @@ "protocol_id": 1 } }, - "protocol_id": 60 + "protocol_id": 61 }, "minecraft:game_event": { "default": "minecraft:step", @@ -4496,116 +4606,152 @@ "minecraft:container_open": { "protocol_id": 10 }, - "minecraft:dispense_fail": { + "minecraft:drink": { "protocol_id": 11 }, - "minecraft:drink": { + "minecraft:eat": { "protocol_id": 12 }, - "minecraft:eat": { + "minecraft:elytra_glide": { "protocol_id": 13 }, - "minecraft:elytra_glide": { + "minecraft:entity_damage": { "protocol_id": 14 }, - "minecraft:entity_damage": { + "minecraft:entity_die": { "protocol_id": 15 }, - "minecraft:entity_die": { + "minecraft:entity_dismount": { "protocol_id": 16 }, - "minecraft:entity_dismount": { + "minecraft:entity_interact": { "protocol_id": 17 }, - "minecraft:entity_interact": { + "minecraft:entity_mount": { "protocol_id": 18 }, - "minecraft:entity_mount": { + "minecraft:entity_place": { "protocol_id": 19 }, - "minecraft:entity_place": { + "minecraft:entity_roar": { "protocol_id": 20 }, - "minecraft:entity_roar": { + "minecraft:entity_shake": { "protocol_id": 21 }, - "minecraft:entity_shake": { + "minecraft:equip": { "protocol_id": 22 }, - "minecraft:equip": { + "minecraft:explode": { "protocol_id": 23 }, - "minecraft:explode": { + "minecraft:flap": { "protocol_id": 24 }, - "minecraft:flap": { + "minecraft:fluid_pickup": { "protocol_id": 25 }, - "minecraft:fluid_pickup": { + "minecraft:fluid_place": { "protocol_id": 26 }, - "minecraft:fluid_place": { + "minecraft:hit_ground": { "protocol_id": 27 }, - "minecraft:hit_ground": { + "minecraft:instrument_play": { "protocol_id": 28 }, - "minecraft:instrument_play": { + "minecraft:item_interact_finish": { "protocol_id": 29 }, - "minecraft:item_interact_finish": { + "minecraft:item_interact_start": { "protocol_id": 30 }, - "minecraft:item_interact_start": { + "minecraft:jukebox_play": { "protocol_id": 31 }, - "minecraft:jukebox_play": { + "minecraft:jukebox_stop_play": { "protocol_id": 32 }, - "minecraft:jukebox_stop_play": { + "minecraft:lightning_strike": { "protocol_id": 33 }, - "minecraft:lightning_strike": { + "minecraft:note_block_play": { "protocol_id": 34 }, - "minecraft:note_block_play": { + "minecraft:prime_fuse": { "protocol_id": 35 }, - "minecraft:piston_contract": { + "minecraft:projectile_land": { "protocol_id": 36 }, - "minecraft:piston_extend": { + "minecraft:projectile_shoot": { "protocol_id": 37 }, - "minecraft:prime_fuse": { - "protocol_id": 38 - }, - "minecraft:projectile_land": { - "protocol_id": 39 - }, - "minecraft:projectile_shoot": { - "protocol_id": 40 - }, - "minecraft:sculk_sensor_tendrils_clicking": { - "protocol_id": 41 - }, - "minecraft:shear": { - "protocol_id": 42 - }, - "minecraft:shriek": { - "protocol_id": 43 - }, - "minecraft:splash": { - "protocol_id": 44 - }, - "minecraft:step": { + "minecraft:resonate_1": { "protocol_id": 45 }, - "minecraft:swim": { + "minecraft:resonate_10": { + "protocol_id": 54 + }, + "minecraft:resonate_11": { + "protocol_id": 55 + }, + "minecraft:resonate_12": { + "protocol_id": 56 + }, + "minecraft:resonate_13": { + "protocol_id": 57 + }, + "minecraft:resonate_14": { + "protocol_id": 58 + }, + "minecraft:resonate_15": { + "protocol_id": 59 + }, + "minecraft:resonate_2": { "protocol_id": 46 }, - "minecraft:teleport": { + "minecraft:resonate_3": { "protocol_id": 47 + }, + "minecraft:resonate_4": { + "protocol_id": 48 + }, + "minecraft:resonate_5": { + "protocol_id": 49 + }, + "minecraft:resonate_6": { + "protocol_id": 50 + }, + "minecraft:resonate_7": { + "protocol_id": 51 + }, + "minecraft:resonate_8": { + "protocol_id": 52 + }, + "minecraft:resonate_9": { + "protocol_id": 53 + }, + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 38 + }, + "minecraft:shear": { + "protocol_id": 39 + }, + "minecraft:shriek": { + "protocol_id": 40 + }, + "minecraft:splash": { + "protocol_id": 41 + }, + "minecraft:step": { + "protocol_id": 42 + }, + "minecraft:swim": { + "protocol_id": 43 + }, + "minecraft:teleport": { + "protocol_id": 44 } }, "protocol_id": 0 @@ -4631,7 +4777,7 @@ "protocol_id": 5 } }, - "protocol_id": 38 + "protocol_id": 39 }, "minecraft:instrument": { "entries": { @@ -4660,7 +4806,7 @@ "protocol_id": 6 } }, - "protocol_id": 62 + "protocol_id": 63 }, "minecraft:int_provider_type": { "entries": { @@ -4683,829 +4829,850 @@ "protocol_id": 4 } }, - "protocol_id": 37 + "protocol_id": 38 }, "minecraft:item": { "default": "minecraft:air", "entries": { "minecraft:acacia_boat": { - "protocol_id": 740 + "protocol_id": 744 }, "minecraft:acacia_button": { - "protocol_id": 662 + "protocol_id": 666 }, "minecraft:acacia_chest_boat": { - "protocol_id": 741 + "protocol_id": 745 }, "minecraft:acacia_door": { - "protocol_id": 689 + "protocol_id": 693 }, "minecraft:acacia_fence": { - "protocol_id": 291 + "protocol_id": 293 }, "minecraft:acacia_fence_gate": { - "protocol_id": 712 + "protocol_id": 716 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 857 + "protocol_id": 861 }, "minecraft:acacia_leaves": { - "protocol_id": 157 + "protocol_id": 158 }, "minecraft:acacia_log": { - "protocol_id": 113 + "protocol_id": 114 }, "minecraft:acacia_planks": { "protocol_id": 27 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 677 + "protocol_id": 681 }, "minecraft:acacia_sapling": { "protocol_id": 39 }, "minecraft:acacia_sign": { - "protocol_id": 846 + "protocol_id": 850 }, "minecraft:acacia_slab": { - "protocol_id": 232 + "protocol_id": 234 }, "minecraft:acacia_stairs": { - "protocol_id": 363 + "protocol_id": 365 }, "minecraft:acacia_trapdoor": { - "protocol_id": 701 + "protocol_id": 705 }, "minecraft:acacia_wood": { - "protocol_id": 147 + "protocol_id": 148 }, "minecraft:activator_rail": { - "protocol_id": 722 + "protocol_id": 726 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 963 + "protocol_id": 967 }, "minecraft:allium": { - "protocol_id": 198 + "protocol_id": 199 }, "minecraft:amethyst_block": { - "protocol_id": 71 + "protocol_id": 72 }, "minecraft:amethyst_cluster": { - "protocol_id": 1204 + "protocol_id": 1210 }, "minecraft:amethyst_shard": { - "protocol_id": 764 + "protocol_id": 768 }, "minecraft:ancient_debris": { - "protocol_id": 66 + "protocol_id": 67 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 623 + "protocol_id": 626 }, "minecraft:andesite_stairs": { - "protocol_id": 606 + "protocol_id": 609 }, "minecraft:andesite_wall": { - "protocol_id": 383 + "protocol_id": 385 + }, + "minecraft:angler_pottery_sherd": { + "protocol_id": 1235 }, "minecraft:anvil": { - "protocol_id": 395 + "protocol_id": 397 }, "minecraft:apple": { - "protocol_id": 755 + "protocol_id": 759 + }, + "minecraft:archer_pottery_sherd": { + "protocol_id": 1236 }, "minecraft:armor_stand": { - "protocol_id": 1073 + "protocol_id": 1077 + }, + "minecraft:arms_up_pottery_sherd": { + "protocol_id": 1237 }, "minecraft:arrow": { - "protocol_id": 757 + "protocol_id": 761 }, "minecraft:axolotl_bucket": { - "protocol_id": 875 + "protocol_id": 879 }, "minecraft:axolotl_spawn_egg": { - "protocol_id": 964 + "protocol_id": 968 }, "minecraft:azalea": { - "protocol_id": 174 + "protocol_id": 175 }, "minecraft:azalea_leaves": { - "protocol_id": 161 + "protocol_id": 162 }, "minecraft:azure_bluet": { - "protocol_id": 199 + "protocol_id": 200 }, "minecraft:baked_potato": { - "protocol_id": 1049 + "protocol_id": 1053 }, "minecraft:bamboo": { - "protocol_id": 227 + "protocol_id": 229 }, "minecraft:bamboo_block": { - "protocol_id": 121 + "protocol_id": 122 }, "minecraft:bamboo_button": { - "protocol_id": 666 + "protocol_id": 670 }, "minecraft:bamboo_chest_raft": { - "protocol_id": 749 + "protocol_id": 753 }, "minecraft:bamboo_door": { - "protocol_id": 693 + "protocol_id": 697 }, "minecraft:bamboo_fence": { - "protocol_id": 295 + "protocol_id": 297 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 716 + "protocol_id": 720 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 861 + "protocol_id": 865 }, "minecraft:bamboo_mosaic": { "protocol_id": 34 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 237 + "protocol_id": 239 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 368 + "protocol_id": 370 }, "minecraft:bamboo_planks": { "protocol_id": 31 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 681 + "protocol_id": 685 }, "minecraft:bamboo_raft": { - "protocol_id": 748 + "protocol_id": 752 }, "minecraft:bamboo_sign": { - "protocol_id": 850 + "protocol_id": 854 }, "minecraft:bamboo_slab": { - "protocol_id": 236 + "protocol_id": 238 }, "minecraft:bamboo_stairs": { - "protocol_id": 367 + "protocol_id": 369 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 705 + "protocol_id": 709 }, "minecraft:barrel": { - "protocol_id": 1148 + "protocol_id": 1154 }, "minecraft:barrier": { - "protocol_id": 419 + "protocol_id": 421 }, "minecraft:basalt": { - "protocol_id": 304 + "protocol_id": 306 }, "minecraft:bat_spawn_egg": { - "protocol_id": 965 + "protocol_id": 969 }, "minecraft:beacon": { - "protocol_id": 372 + "protocol_id": 374 }, "minecraft:bedrock": { "protocol_id": 43 }, "minecraft:bee_nest": { - "protocol_id": 1165 + "protocol_id": 1171 }, "minecraft:bee_spawn_egg": { - "protocol_id": 966 + "protocol_id": 970 }, "minecraft:beef": { - "protocol_id": 943 + "protocol_id": 947 }, "minecraft:beehive": { - "protocol_id": 1166 + "protocol_id": 1172 }, "minecraft:beetroot": { - "protocol_id": 1103 + "protocol_id": 1108 }, "minecraft:beetroot_seeds": { - "protocol_id": 1104 + "protocol_id": 1109 }, "minecraft:beetroot_soup": { - "protocol_id": 1105 + "protocol_id": 1110 }, "minecraft:bell": { - "protocol_id": 1156 + "protocol_id": 1162 }, "minecraft:big_dripleaf": { - "protocol_id": 225 + "protocol_id": 227 }, "minecraft:birch_boat": { - "protocol_id": 736 + "protocol_id": 740 }, "minecraft:birch_button": { - "protocol_id": 660 + "protocol_id": 664 }, "minecraft:birch_chest_boat": { - "protocol_id": 737 + "protocol_id": 741 }, "minecraft:birch_door": { - "protocol_id": 687 + "protocol_id": 691 }, "minecraft:birch_fence": { - "protocol_id": 289 + "protocol_id": 291 }, "minecraft:birch_fence_gate": { - "protocol_id": 710 + "protocol_id": 714 }, "minecraft:birch_hanging_sign": { - "protocol_id": 855 + "protocol_id": 859 }, "minecraft:birch_leaves": { - "protocol_id": 155 + "protocol_id": 156 }, "minecraft:birch_log": { - "protocol_id": 111 + "protocol_id": 112 }, "minecraft:birch_planks": { "protocol_id": 25 }, "minecraft:birch_pressure_plate": { - "protocol_id": 675 + "protocol_id": 679 }, "minecraft:birch_sapling": { "protocol_id": 37 }, "minecraft:birch_sign": { - "protocol_id": 844 + "protocol_id": 848 }, "minecraft:birch_slab": { - "protocol_id": 230 + "protocol_id": 232 }, "minecraft:birch_stairs": { - "protocol_id": 361 + "protocol_id": 363 }, "minecraft:birch_trapdoor": { - "protocol_id": 699 + "protocol_id": 703 }, "minecraft:birch_wood": { - "protocol_id": 145 + "protocol_id": 146 }, "minecraft:black_banner": { - "protocol_id": 1098 + "protocol_id": 1102 }, "minecraft:black_bed": { - "protocol_id": 935 + "protocol_id": 939 }, "minecraft:black_candle": { - "protocol_id": 1200 + "protocol_id": 1206 }, "minecraft:black_carpet": { - "protocol_id": 437 + "protocol_id": 439 }, "minecraft:black_concrete": { - "protocol_id": 546 + "protocol_id": 548 }, "minecraft:black_concrete_powder": { - "protocol_id": 562 + "protocol_id": 564 }, "minecraft:black_dye": { - "protocol_id": 915 + "protocol_id": 919 }, "minecraft:black_glazed_terracotta": { - "protocol_id": 530 + "protocol_id": 532 }, "minecraft:black_shulker_box": { - "protocol_id": 514 + "protocol_id": 516 }, "minecraft:black_stained_glass": { - "protocol_id": 462 + "protocol_id": 464 }, "minecraft:black_stained_glass_pane": { - "protocol_id": 478 + "protocol_id": 480 }, "minecraft:black_terracotta": { - "protocol_id": 418 + "protocol_id": 420 }, "minecraft:black_wool": { - "protocol_id": 194 + "protocol_id": 195 }, "minecraft:blackstone": { - "protocol_id": 1171 + "protocol_id": 1177 }, "minecraft:blackstone_slab": { - "protocol_id": 1172 + "protocol_id": 1178 }, "minecraft:blackstone_stairs": { - "protocol_id": 1173 + "protocol_id": 1179 }, "minecraft:blackstone_wall": { - "protocol_id": 388 + "protocol_id": 390 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1238 }, "minecraft:blast_furnace": { - "protocol_id": 1150 + "protocol_id": 1156 }, "minecraft:blaze_powder": { - "protocol_id": 957 + "protocol_id": 961 }, "minecraft:blaze_rod": { - "protocol_id": 949 + "protocol_id": 953 }, "minecraft:blaze_spawn_egg": { - "protocol_id": 967 + "protocol_id": 971 }, "minecraft:blue_banner": { - "protocol_id": 1094 + "protocol_id": 1098 }, "minecraft:blue_bed": { - "protocol_id": 931 + "protocol_id": 935 }, "minecraft:blue_candle": { - "protocol_id": 1196 + "protocol_id": 1202 }, "minecraft:blue_carpet": { - "protocol_id": 433 + "protocol_id": 435 }, "minecraft:blue_concrete": { - "protocol_id": 542 + "protocol_id": 544 }, "minecraft:blue_concrete_powder": { - "protocol_id": 558 + "protocol_id": 560 }, "minecraft:blue_dye": { - "protocol_id": 911 + "protocol_id": 915 }, "minecraft:blue_glazed_terracotta": { - "protocol_id": 526 + "protocol_id": 528 }, "minecraft:blue_ice": { - "protocol_id": 594 + "protocol_id": 597 }, "minecraft:blue_orchid": { - "protocol_id": 197 + "protocol_id": 198 }, "minecraft:blue_shulker_box": { - "protocol_id": 510 + "protocol_id": 512 }, "minecraft:blue_stained_glass": { - "protocol_id": 458 + "protocol_id": 460 }, "minecraft:blue_stained_glass_pane": { - "protocol_id": 474 + "protocol_id": 476 }, "minecraft:blue_terracotta": { - "protocol_id": 414 + "protocol_id": 416 }, "minecraft:blue_wool": { - "protocol_id": 190 - }, - "minecraft:bone": { - "protocol_id": 917 - }, - "minecraft:bone_block": { - "protocol_id": 496 - }, - "minecraft:bone_meal": { - "protocol_id": 916 - }, - "minecraft:book": { - "protocol_id": 881 - }, - "minecraft:bookshelf": { - "protocol_id": 262 - }, - "minecraft:bow": { - "protocol_id": 756 - }, - "minecraft:bowl": { - "protocol_id": 804 - }, - "minecraft:brain_coral": { - "protocol_id": 575 - }, - "minecraft:brain_coral_block": { - "protocol_id": 570 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 585 - }, - "minecraft:bread": { - "protocol_id": 811 - }, - "minecraft:brewing_stand": { - "protocol_id": 959 - }, - "minecraft:brick": { - "protocol_id": 877 - }, - "minecraft:brick_slab": { - "protocol_id": 246 - }, - "minecraft:brick_stairs": { - "protocol_id": 337 - }, - "minecraft:brick_wall": { - "protocol_id": 375 - }, - "minecraft:bricks": { - "protocol_id": 261 - }, - "minecraft:brown_banner": { - "protocol_id": 1095 - }, - "minecraft:brown_bed": { - "protocol_id": 932 - }, - "minecraft:brown_candle": { - "protocol_id": 1197 - }, - "minecraft:brown_carpet": { - "protocol_id": 434 - }, - "minecraft:brown_concrete": { - "protocol_id": 543 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 559 - }, - "minecraft:brown_dye": { - "protocol_id": 912 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 527 - }, - "minecraft:brown_mushroom": { - "protocol_id": 210 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 328 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 511 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 459 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 475 - }, - "minecraft:brown_terracotta": { - "protocol_id": 415 - }, - "minecraft:brown_wool": { "protocol_id": 191 }, + "minecraft:bone": { + "protocol_id": 921 + }, + "minecraft:bone_block": { + "protocol_id": 498 + }, + "minecraft:bone_meal": { + "protocol_id": 920 + }, + "minecraft:book": { + "protocol_id": 885 + }, + "minecraft:bookshelf": { + "protocol_id": 264 + }, + "minecraft:bow": { + "protocol_id": 760 + }, + "minecraft:bowl": { + "protocol_id": 808 + }, + "minecraft:brain_coral": { + "protocol_id": 578 + }, + "minecraft:brain_coral_block": { + "protocol_id": 573 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 588 + }, + "minecraft:bread": { + "protocol_id": 815 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1239 + }, + "minecraft:brewing_stand": { + "protocol_id": 963 + }, + "minecraft:brick": { + "protocol_id": 881 + }, + "minecraft:brick_slab": { + "protocol_id": 248 + }, + "minecraft:brick_stairs": { + "protocol_id": 339 + }, + "minecraft:brick_wall": { + "protocol_id": 377 + }, + "minecraft:bricks": { + "protocol_id": 263 + }, + "minecraft:brown_banner": { + "protocol_id": 1099 + }, + "minecraft:brown_bed": { + "protocol_id": 936 + }, + "minecraft:brown_candle": { + "protocol_id": 1203 + }, + "minecraft:brown_carpet": { + "protocol_id": 436 + }, + "minecraft:brown_concrete": { + "protocol_id": 545 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 561 + }, + "minecraft:brown_dye": { + "protocol_id": 916 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 529 + }, + "minecraft:brown_mushroom": { + "protocol_id": 212 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 330 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 513 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 461 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 477 + }, + "minecraft:brown_terracotta": { + "protocol_id": 417 + }, + "minecraft:brown_wool": { + "protocol_id": 192 + }, "minecraft:brush": { - "protocol_id": 1211 + "protocol_id": 1217 }, "minecraft:bubble_coral": { - "protocol_id": 576 + "protocol_id": 579 }, "minecraft:bubble_coral_block": { - "protocol_id": 571 + "protocol_id": 574 }, "minecraft:bubble_coral_fan": { - "protocol_id": 586 + "protocol_id": 589 }, "minecraft:bucket": { - "protocol_id": 864 + "protocol_id": 868 }, "minecraft:budding_amethyst": { - "protocol_id": 72 + "protocol_id": 73 }, "minecraft:bundle": { - "protocol_id": 886 + "protocol_id": 890 + }, + "minecraft:burn_pottery_sherd": { + "protocol_id": 1240 }, "minecraft:cactus": { - "protocol_id": 284 + "protocol_id": 286 }, "minecraft:cake": { - "protocol_id": 919 + "protocol_id": 923 }, "minecraft:calcite": { "protocol_id": 11 }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 654 + }, "minecraft:camel_spawn_egg": { - "protocol_id": 969 + "protocol_id": 973 }, "minecraft:campfire": { - "protocol_id": 1161 + "protocol_id": 1167 }, "minecraft:candle": { - "protocol_id": 1184 + "protocol_id": 1190 }, "minecraft:carrot": { - "protocol_id": 1047 + "protocol_id": 1051 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 729 + "protocol_id": 733 }, "minecraft:cartography_table": { - "protocol_id": 1151 + "protocol_id": 1157 }, "minecraft:carved_pumpkin": { - "protocol_id": 299 + "protocol_id": 301 }, "minecraft:cat_spawn_egg": { - "protocol_id": 968 + "protocol_id": 972 }, "minecraft:cauldron": { - "protocol_id": 960 + "protocol_id": 964 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 970 + "protocol_id": 974 }, "minecraft:chain": { - "protocol_id": 332 + "protocol_id": 334 }, "minecraft:chain_command_block": { - "protocol_id": 491 + "protocol_id": 493 }, "minecraft:chainmail_boots": { - "protocol_id": 819 + "protocol_id": 823 }, "minecraft:chainmail_chestplate": { - "protocol_id": 817 + "protocol_id": 821 }, "minecraft:chainmail_helmet": { - "protocol_id": 816 + "protocol_id": 820 }, "minecraft:chainmail_leggings": { - "protocol_id": 818 + "protocol_id": 822 }, "minecraft:charcoal": { - "protocol_id": 759 + "protocol_id": 763 }, "minecraft:cherry_boat": { - "protocol_id": 742 + "protocol_id": 746 }, "minecraft:cherry_button": { - "protocol_id": 663 + "protocol_id": 667 }, "minecraft:cherry_chest_boat": { - "protocol_id": 743 + "protocol_id": 747 }, "minecraft:cherry_door": { - "protocol_id": 690 + "protocol_id": 694 }, "minecraft:cherry_fence": { - "protocol_id": 292 + "protocol_id": 294 }, "minecraft:cherry_fence_gate": { - "protocol_id": 713 + "protocol_id": 717 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 858 + "protocol_id": 862 }, "minecraft:cherry_leaves": { - "protocol_id": 158 + "protocol_id": 159 }, "minecraft:cherry_log": { - "protocol_id": 114 + "protocol_id": 115 }, "minecraft:cherry_planks": { "protocol_id": 28 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 678 + "protocol_id": 682 }, "minecraft:cherry_sapling": { "protocol_id": 40 }, "minecraft:cherry_sign": { - "protocol_id": 847 + "protocol_id": 851 }, "minecraft:cherry_slab": { - "protocol_id": 233 + "protocol_id": 235 }, "minecraft:cherry_stairs": { - "protocol_id": 364 + "protocol_id": 366 }, "minecraft:cherry_trapdoor": { - "protocol_id": 702 + "protocol_id": 706 }, "minecraft:cherry_wood": { - "protocol_id": 148 + "protocol_id": 149 }, "minecraft:chest": { - "protocol_id": 275 + "protocol_id": 277 }, "minecraft:chest_minecart": { - "protocol_id": 725 + "protocol_id": 729 }, "minecraft:chicken": { - "protocol_id": 945 + "protocol_id": 949 }, "minecraft:chicken_spawn_egg": { - "protocol_id": 971 + "protocol_id": 975 }, "minecraft:chipped_anvil": { - "protocol_id": 396 - }, - "minecraft:chiseled_bookshelf": { - "protocol_id": 263 - }, - "minecraft:chiseled_deepslate": { - "protocol_id": 326 - }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 344 - }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1178 - }, - "minecraft:chiseled_quartz_block": { "protocol_id": 398 }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 265 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 328 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 346 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1184 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 400 + }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 487 + "protocol_id": 489 }, "minecraft:chiseled_sandstone": { - "protocol_id": 169 + "protocol_id": 170 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 319 + "protocol_id": 321 }, "minecraft:chorus_flower": { - "protocol_id": 270 + "protocol_id": 272 }, "minecraft:chorus_fruit": { - "protocol_id": 1100 + "protocol_id": 1104 }, "minecraft:chorus_plant": { - "protocol_id": 269 + "protocol_id": 271 }, "minecraft:clay": { - "protocol_id": 285 + "protocol_id": 287 }, "minecraft:clay_ball": { - "protocol_id": 878 + "protocol_id": 882 }, "minecraft:clock": { - "protocol_id": 888 + "protocol_id": 892 }, "minecraft:coal": { - "protocol_id": 758 + "protocol_id": 762 }, "minecraft:coal_block": { - "protocol_id": 67 + "protocol_id": 68 }, "minecraft:coal_ore": { - "protocol_id": 48 + "protocol_id": 49 }, "minecraft:coarse_dirt": { "protocol_id": 16 }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1215 + "protocol_id": 1221 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 627 + "protocol_id": 630 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 610 + "protocol_id": 613 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 391 + "protocol_id": 393 }, "minecraft:cobblestone": { "protocol_id": 22 }, "minecraft:cobblestone_slab": { - "protocol_id": 245 + "protocol_id": 247 }, "minecraft:cobblestone_stairs": { - "protocol_id": 280 + "protocol_id": 282 }, "minecraft:cobblestone_wall": { - "protocol_id": 373 + "protocol_id": 375 }, "minecraft:cobweb": { - "protocol_id": 171 + "protocol_id": 172 }, "minecraft:cocoa_beans": { - "protocol_id": 899 + "protocol_id": 903 }, "minecraft:cod": { - "protocol_id": 891 - }, - "minecraft:cod_bucket": { - "protocol_id": 873 - }, - "minecraft:cod_spawn_egg": { - "protocol_id": 972 - }, - "minecraft:command_block": { - "protocol_id": 371 - }, - "minecraft:command_block_minecart": { - "protocol_id": 1080 - }, - "minecraft:comparator": { - "protocol_id": 636 - }, - "minecraft:compass": { - "protocol_id": 884 - }, - "minecraft:composter": { - "protocol_id": 1147 - }, - "minecraft:conduit": { - "protocol_id": 595 - }, - "minecraft:cooked_beef": { - "protocol_id": 944 - }, - "minecraft:cooked_chicken": { - "protocol_id": 946 - }, - "minecraft:cooked_cod": { "protocol_id": 895 }, + "minecraft:cod_bucket": { + "protocol_id": 877 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 976 + }, + "minecraft:command_block": { + "protocol_id": 373 + }, + "minecraft:command_block_minecart": { + "protocol_id": 1084 + }, + "minecraft:comparator": { + "protocol_id": 639 + }, + "minecraft:compass": { + "protocol_id": 888 + }, + "minecraft:composter": { + "protocol_id": 1153 + }, + "minecraft:conduit": { + "protocol_id": 598 + }, + "minecraft:cooked_beef": { + "protocol_id": 948 + }, + "minecraft:cooked_chicken": { + "protocol_id": 950 + }, + "minecraft:cooked_cod": { + "protocol_id": 899 + }, "minecraft:cooked_mutton": { - "protocol_id": 1082 + "protocol_id": 1086 }, "minecraft:cooked_porkchop": { - "protocol_id": 838 + "protocol_id": 842 }, "minecraft:cooked_rabbit": { - "protocol_id": 1069 + "protocol_id": 1073 }, "minecraft:cooked_salmon": { - "protocol_id": 896 + "protocol_id": 900 }, "minecraft:cookie": { - "protocol_id": 936 + "protocol_id": 940 }, "minecraft:copper_block": { - "protocol_id": 74 + "protocol_id": 75 }, "minecraft:copper_ingot": { - "protocol_id": 768 + "protocol_id": 772 }, "minecraft:copper_ore": { - "protocol_id": 52 + "protocol_id": 53 }, "minecraft:cornflower": { - "protocol_id": 205 + "protocol_id": 206 }, "minecraft:cow_spawn_egg": { - "protocol_id": 973 + "protocol_id": 977 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 323 - }, - "minecraft:cracked_deepslate_tiles": { "protocol_id": 325 }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 327 + }, "minecraft:cracked_nether_bricks": { - "protocol_id": 343 + "protocol_id": 345 }, "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1182 + "protocol_id": 1188 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 318 + "protocol_id": 320 }, "minecraft:crafting_table": { - "protocol_id": 276 + "protocol_id": 278 }, "minecraft:creeper_banner_pattern": { - "protocol_id": 1141 + "protocol_id": 1147 }, "minecraft:creeper_head": { - "protocol_id": 1057 + "protocol_id": 1061 }, "minecraft:creeper_spawn_egg": { - "protocol_id": 974 + "protocol_id": 978 }, "minecraft:crimson_button": { - "protocol_id": 667 + "protocol_id": 671 }, "minecraft:crimson_door": { - "protocol_id": 694 + "protocol_id": 698 }, "minecraft:crimson_fence": { - "protocol_id": 296 + "protocol_id": 298 }, "minecraft:crimson_fence_gate": { - "protocol_id": 717 + "protocol_id": 721 }, "minecraft:crimson_fungus": { - "protocol_id": 212 + "protocol_id": 214 }, "minecraft:crimson_hanging_sign": { - "protocol_id": 862 + "protocol_id": 866 }, "minecraft:crimson_hyphae": { - "protocol_id": 151 + "protocol_id": 152 }, "minecraft:crimson_nylium": { "protocol_id": 20 @@ -5514,2617 +5681,2674 @@ "protocol_id": 32 }, "minecraft:crimson_pressure_plate": { - "protocol_id": 682 + "protocol_id": 686 }, "minecraft:crimson_roots": { - "protocol_id": 214 + "protocol_id": 216 }, "minecraft:crimson_sign": { - "protocol_id": 851 + "protocol_id": 855 }, "minecraft:crimson_slab": { - "protocol_id": 238 + "protocol_id": 240 }, "minecraft:crimson_stairs": { - "protocol_id": 369 + "protocol_id": 371 }, "minecraft:crimson_stem": { - "protocol_id": 119 + "protocol_id": 120 }, "minecraft:crimson_trapdoor": { - "protocol_id": 706 + "protocol_id": 710 }, "minecraft:crossbow": { - "protocol_id": 1137 + "protocol_id": 1143 }, "minecraft:crying_obsidian": { - "protocol_id": 1170 + "protocol_id": 1176 }, "minecraft:cut_copper": { - "protocol_id": 81 + "protocol_id": 82 }, "minecraft:cut_copper_slab": { - "protocol_id": 89 + "protocol_id": 90 }, "minecraft:cut_copper_stairs": { - "protocol_id": 85 + "protocol_id": 86 }, "minecraft:cut_red_sandstone": { - "protocol_id": 488 + "protocol_id": 490 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 252 + "protocol_id": 254 }, "minecraft:cut_sandstone": { - "protocol_id": 170 + "protocol_id": 171 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 243 + "protocol_id": 245 }, "minecraft:cyan_banner": { - "protocol_id": 1092 + "protocol_id": 1096 }, "minecraft:cyan_bed": { - "protocol_id": 929 + "protocol_id": 933 }, "minecraft:cyan_candle": { - "protocol_id": 1194 + "protocol_id": 1200 }, "minecraft:cyan_carpet": { - "protocol_id": 431 + "protocol_id": 433 }, "minecraft:cyan_concrete": { - "protocol_id": 540 + "protocol_id": 542 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 556 + "protocol_id": 558 }, "minecraft:cyan_dye": { - "protocol_id": 909 + "protocol_id": 913 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 524 + "protocol_id": 526 }, "minecraft:cyan_shulker_box": { - "protocol_id": 508 + "protocol_id": 510 }, "minecraft:cyan_stained_glass": { - "protocol_id": 456 + "protocol_id": 458 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 472 + "protocol_id": 474 }, "minecraft:cyan_terracotta": { - "protocol_id": 412 + "protocol_id": 414 }, "minecraft:cyan_wool": { - "protocol_id": 188 + "protocol_id": 189 }, "minecraft:damaged_anvil": { - "protocol_id": 397 + "protocol_id": 399 }, "minecraft:dandelion": { - "protocol_id": 195 + "protocol_id": 196 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1241 }, "minecraft:dark_oak_boat": { - "protocol_id": 744 + "protocol_id": 748 }, "minecraft:dark_oak_button": { - "protocol_id": 664 + "protocol_id": 668 }, "minecraft:dark_oak_chest_boat": { - "protocol_id": 745 + "protocol_id": 749 }, "minecraft:dark_oak_door": { - "protocol_id": 691 + "protocol_id": 695 }, "minecraft:dark_oak_fence": { - "protocol_id": 293 + "protocol_id": 295 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 714 + "protocol_id": 718 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 859 + "protocol_id": 863 }, "minecraft:dark_oak_leaves": { - "protocol_id": 159 + "protocol_id": 160 }, "minecraft:dark_oak_log": { - "protocol_id": 115 + "protocol_id": 116 }, "minecraft:dark_oak_planks": { "protocol_id": 29 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 679 + "protocol_id": 683 }, "minecraft:dark_oak_sapling": { "protocol_id": 41 }, "minecraft:dark_oak_sign": { - "protocol_id": 848 + "protocol_id": 852 }, "minecraft:dark_oak_slab": { - "protocol_id": 234 + "protocol_id": 236 }, "minecraft:dark_oak_stairs": { - "protocol_id": 365 + "protocol_id": 367 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 703 + "protocol_id": 707 }, "minecraft:dark_oak_wood": { - "protocol_id": 149 + "protocol_id": 150 }, "minecraft:dark_prismarine": { - "protocol_id": 481 + "protocol_id": 483 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 256 + "protocol_id": 258 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 484 + "protocol_id": 486 }, "minecraft:daylight_detector": { - "protocol_id": 649 + "protocol_id": 652 }, "minecraft:dead_brain_coral": { - "protocol_id": 579 - }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 565 - }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 590 - }, - "minecraft:dead_bubble_coral": { - "protocol_id": 580 - }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 566 - }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 591 - }, - "minecraft:dead_bush": { - "protocol_id": 176 - }, - "minecraft:dead_fire_coral": { - "protocol_id": 581 - }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 567 - }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 592 - }, - "minecraft:dead_horn_coral": { "protocol_id": 582 }, - "minecraft:dead_horn_coral_block": { + "minecraft:dead_brain_coral_block": { "protocol_id": 568 }, - "minecraft:dead_horn_coral_fan": { + "minecraft:dead_brain_coral_fan": { "protocol_id": 593 }, - "minecraft:dead_tube_coral": { + "minecraft:dead_bubble_coral": { "protocol_id": 583 }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 569 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 594 + }, + "minecraft:dead_bush": { + "protocol_id": 177 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 584 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 570 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 595 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 585 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 571 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 596 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 586 + }, "minecraft:dead_tube_coral_block": { - "protocol_id": 564 + "protocol_id": 567 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 589 + "protocol_id": 592 }, "minecraft:debug_stick": { - "protocol_id": 1116 + "protocol_id": 1121 }, "minecraft:decorated_pot": { - "protocol_id": 264 + "protocol_id": 266 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 629 + "protocol_id": 632 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 612 + "protocol_id": 615 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 393 + "protocol_id": 395 }, "minecraft:deepslate_bricks": { - "protocol_id": 322 - }, - "minecraft:deepslate_coal_ore": { - "protocol_id": 49 - }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 53 - }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 63 - }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 59 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 55 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 51 - }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 61 - }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 57 - }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 630 - }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 613 - }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 394 - }, - "minecraft:deepslate_tiles": { "protocol_id": 324 }, - "minecraft:detector_rail": { - "protocol_id": 720 + "minecraft:deepslate_coal_ore": { + "protocol_id": 50 }, - "minecraft:diamond": { - "protocol_id": 760 + "minecraft:deepslate_copper_ore": { + "protocol_id": 54 }, - "minecraft:diamond_axe": { - "protocol_id": 796 + "minecraft:deepslate_diamond_ore": { + "protocol_id": 64 }, - "minecraft:diamond_block": { - "protocol_id": 76 + "minecraft:deepslate_emerald_ore": { + "protocol_id": 60 }, - "minecraft:diamond_boots": { - "protocol_id": 827 + "minecraft:deepslate_gold_ore": { + "protocol_id": 56 }, - "minecraft:diamond_chestplate": { - "protocol_id": 825 + "minecraft:deepslate_iron_ore": { + "protocol_id": 52 }, - "minecraft:diamond_helmet": { - "protocol_id": 824 - }, - "minecraft:diamond_hoe": { - "protocol_id": 797 - }, - "minecraft:diamond_horse_armor": { - "protocol_id": 1076 - }, - "minecraft:diamond_leggings": { - "protocol_id": 826 - }, - "minecraft:diamond_ore": { + "minecraft:deepslate_lapis_ore": { "protocol_id": 62 }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 58 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 633 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 616 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 396 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 326 + }, + "minecraft:detector_rail": { + "protocol_id": 724 + }, + "minecraft:diamond": { + "protocol_id": 764 + }, + "minecraft:diamond_axe": { + "protocol_id": 800 + }, + "minecraft:diamond_block": { + "protocol_id": 77 + }, + "minecraft:diamond_boots": { + "protocol_id": 831 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 829 + }, + "minecraft:diamond_helmet": { + "protocol_id": 828 + }, + "minecraft:diamond_hoe": { + "protocol_id": 801 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1080 + }, + "minecraft:diamond_leggings": { + "protocol_id": 830 + }, + "minecraft:diamond_ore": { + "protocol_id": 63 + }, "minecraft:diamond_pickaxe": { - "protocol_id": 795 + "protocol_id": 799 }, "minecraft:diamond_shovel": { - "protocol_id": 794 + "protocol_id": 798 }, "minecraft:diamond_sword": { - "protocol_id": 793 + "protocol_id": 797 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 626 + "protocol_id": 629 }, "minecraft:diorite_stairs": { - "protocol_id": 609 + "protocol_id": 612 }, "minecraft:diorite_wall": { - "protocol_id": 387 + "protocol_id": 389 }, "minecraft:dirt": { "protocol_id": 15 }, "minecraft:dirt_path": { - "protocol_id": 440 + "protocol_id": 442 }, "minecraft:disc_fragment_5": { - "protocol_id": 1132 + "protocol_id": 1138 }, "minecraft:dispenser": { - "protocol_id": 643 + "protocol_id": 646 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 975 + "protocol_id": 979 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 976 + "protocol_id": 980 }, "minecraft:dragon_breath": { - "protocol_id": 1106 + "protocol_id": 1111 }, "minecraft:dragon_egg": { - "protocol_id": 355 + "protocol_id": 357 }, "minecraft:dragon_head": { - "protocol_id": 1058 + "protocol_id": 1062 }, "minecraft:dried_kelp": { - "protocol_id": 940 + "protocol_id": 944 }, "minecraft:dried_kelp_block": { - "protocol_id": 879 + "protocol_id": 883 }, "minecraft:dripstone_block": { "protocol_id": 13 }, "minecraft:dropper": { - "protocol_id": 644 + "protocol_id": 647 }, "minecraft:drowned_spawn_egg": { - "protocol_id": 977 - }, - "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1214 - }, - "minecraft:echo_shard": { - "protocol_id": 1210 - }, - "minecraft:egg": { - "protocol_id": 883 - }, - "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 978 - }, - "minecraft:elytra": { - "protocol_id": 731 - }, - "minecraft:emerald": { - "protocol_id": 761 - }, - "minecraft:emerald_block": { - "protocol_id": 358 - }, - "minecraft:emerald_ore": { - "protocol_id": 58 - }, - "minecraft:enchanted_book": { - "protocol_id": 1064 - }, - "minecraft:enchanted_golden_apple": { - "protocol_id": 841 - }, - "minecraft:enchanting_table": { - "protocol_id": 351 - }, - "minecraft:end_crystal": { - "protocol_id": 1099 - }, - "minecraft:end_portal_frame": { - "protocol_id": 352 - }, - "minecraft:end_rod": { - "protocol_id": 268 - }, - "minecraft:end_stone": { - "protocol_id": 353 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 619 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 601 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 386 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 354 - }, - "minecraft:ender_chest": { - "protocol_id": 357 - }, - "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 979 - }, - "minecraft:ender_eye": { - "protocol_id": 961 - }, - "minecraft:ender_pearl": { - "protocol_id": 948 - }, - "minecraft:enderman_spawn_egg": { - "protocol_id": 980 - }, - "minecraft:endermite_spawn_egg": { "protocol_id": 981 }, - "minecraft:evoker_spawn_egg": { - "protocol_id": 982 + "minecraft:dune_armor_trim_smithing_template": { + "protocol_id": 1220 }, - "minecraft:experience_bottle": { - "protocol_id": 1040 + "minecraft:echo_shard": { + "protocol_id": 1216 }, - "minecraft:exposed_copper": { - "protocol_id": 78 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 82 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 90 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 86 - }, - "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1218 - }, - "minecraft:farmland": { - "protocol_id": 277 - }, - "minecraft:feather": { - "protocol_id": 807 - }, - "minecraft:fermented_spider_eye": { - "protocol_id": 956 - }, - "minecraft:fern": { - "protocol_id": 173 - }, - "minecraft:filled_map": { - "protocol_id": 937 - }, - "minecraft:fire_charge": { - "protocol_id": 1041 - }, - "minecraft:fire_coral": { - "protocol_id": 577 - }, - "minecraft:fire_coral_block": { - "protocol_id": 572 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 587 - }, - "minecraft:firework_rocket": { - "protocol_id": 1062 - }, - "minecraft:firework_star": { - "protocol_id": 1063 - }, - "minecraft:fishing_rod": { + "minecraft:egg": { "protocol_id": 887 }, - "minecraft:fletching_table": { - "protocol_id": 1152 + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 982 }, - "minecraft:flint": { - "protocol_id": 836 + "minecraft:elytra": { + "protocol_id": 735 }, - "minecraft:flint_and_steel": { - "protocol_id": 754 + "minecraft:emerald": { + "protocol_id": 765 }, - "minecraft:flower_banner_pattern": { - "protocol_id": 1140 + "minecraft:emerald_block": { + "protocol_id": 360 }, - "minecraft:flower_pot": { - "protocol_id": 1046 + "minecraft:emerald_ore": { + "protocol_id": 59 }, - "minecraft:flowering_azalea": { - "protocol_id": 175 + "minecraft:enchanted_book": { + "protocol_id": 1068 }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 162 + "minecraft:enchanted_golden_apple": { + "protocol_id": 845 }, - "minecraft:fox_spawn_egg": { + "minecraft:enchanting_table": { + "protocol_id": 353 + }, + "minecraft:end_crystal": { + "protocol_id": 1103 + }, + "minecraft:end_portal_frame": { + "protocol_id": 354 + }, + "minecraft:end_rod": { + "protocol_id": 270 + }, + "minecraft:end_stone": { + "protocol_id": 355 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 622 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 604 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 388 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 356 + }, + "minecraft:ender_chest": { + "protocol_id": 359 + }, + "minecraft:ender_dragon_spawn_egg": { "protocol_id": 983 }, - "minecraft:frog_spawn_egg": { + "minecraft:ender_eye": { + "protocol_id": 965 + }, + "minecraft:ender_pearl": { + "protocol_id": 952 + }, + "minecraft:enderman_spawn_egg": { "protocol_id": 984 }, - "minecraft:frogspawn": { - "protocol_id": 1209 - }, - "minecraft:furnace": { - "protocol_id": 278 - }, - "minecraft:furnace_minecart": { - "protocol_id": 726 - }, - "minecraft:ghast_spawn_egg": { + "minecraft:endermite_spawn_egg": { "protocol_id": 985 }, - "minecraft:ghast_tear": { - "protocol_id": 950 - }, - "minecraft:gilded_blackstone": { - "protocol_id": 1174 - }, - "minecraft:glass": { - "protocol_id": 165 - }, - "minecraft:glass_bottle": { - "protocol_id": 954 - }, - "minecraft:glass_pane": { - "protocol_id": 333 - }, - "minecraft:glistering_melon_slice": { - "protocol_id": 962 - }, - "minecraft:globe_banner_pattern": { - "protocol_id": 1144 - }, - "minecraft:glow_berries": { - "protocol_id": 1160 - }, - "minecraft:glow_ink_sac": { - "protocol_id": 898 - }, - "minecraft:glow_item_frame": { - "protocol_id": 1045 - }, - "minecraft:glow_lichen": { - "protocol_id": 336 - }, - "minecraft:glow_squid_spawn_egg": { + "minecraft:evoker_spawn_egg": { "protocol_id": 986 }, - "minecraft:glowstone": { - "protocol_id": 308 + "minecraft:experience_bottle": { + "protocol_id": 1044 }, - "minecraft:glowstone_dust": { - "protocol_id": 890 + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1242 }, - "minecraft:goat_horn": { - "protocol_id": 1146 + "minecraft:exposed_copper": { + "protocol_id": 79 }, - "minecraft:goat_spawn_egg": { - "protocol_id": 987 + "minecraft:exposed_cut_copper": { + "protocol_id": 83 }, - "minecraft:gold_block": { - "protocol_id": 75 + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 91 }, - "minecraft:gold_ingot": { - "protocol_id": 770 + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 87 }, - "minecraft:gold_nugget": { - "protocol_id": 951 + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1224 }, - "minecraft:gold_ore": { - "protocol_id": 54 + "minecraft:farmland": { + "protocol_id": 279 }, - "minecraft:golden_apple": { + "minecraft:feather": { + "protocol_id": 811 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 960 + }, + "minecraft:fern": { + "protocol_id": 174 + }, + "minecraft:filled_map": { + "protocol_id": 941 + }, + "minecraft:fire_charge": { + "protocol_id": 1045 + }, + "minecraft:fire_coral": { + "protocol_id": 580 + }, + "minecraft:fire_coral_block": { + "protocol_id": 575 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 590 + }, + "minecraft:firework_rocket": { + "protocol_id": 1066 + }, + "minecraft:firework_star": { + "protocol_id": 1067 + }, + "minecraft:fishing_rod": { + "protocol_id": 891 + }, + "minecraft:fletching_table": { + "protocol_id": 1158 + }, + "minecraft:flint": { "protocol_id": 840 }, + "minecraft:flint_and_steel": { + "protocol_id": 758 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1146 + }, + "minecraft:flower_pot": { + "protocol_id": 1050 + }, + "minecraft:flowering_azalea": { + "protocol_id": 176 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 163 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 987 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1243 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 988 + }, + "minecraft:frogspawn": { + "protocol_id": 1215 + }, + "minecraft:furnace": { + "protocol_id": 280 + }, + "minecraft:furnace_minecart": { + "protocol_id": 730 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 989 + }, + "minecraft:ghast_tear": { + "protocol_id": 954 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1180 + }, + "minecraft:glass": { + "protocol_id": 166 + }, + "minecraft:glass_bottle": { + "protocol_id": 958 + }, + "minecraft:glass_pane": { + "protocol_id": 335 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 966 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1150 + }, + "minecraft:glow_berries": { + "protocol_id": 1166 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 902 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1049 + }, + "minecraft:glow_lichen": { + "protocol_id": 338 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 990 + }, + "minecraft:glowstone": { + "protocol_id": 310 + }, + "minecraft:glowstone_dust": { + "protocol_id": 894 + }, + "minecraft:goat_horn": { + "protocol_id": 1152 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 991 + }, + "minecraft:gold_block": { + "protocol_id": 76 + }, + "minecraft:gold_ingot": { + "protocol_id": 774 + }, + "minecraft:gold_nugget": { + "protocol_id": 955 + }, + "minecraft:gold_ore": { + "protocol_id": 55 + }, + "minecraft:golden_apple": { + "protocol_id": 844 + }, "minecraft:golden_axe": { - "protocol_id": 786 + "protocol_id": 790 }, "minecraft:golden_boots": { - "protocol_id": 831 + "protocol_id": 835 }, "minecraft:golden_carrot": { - "protocol_id": 1052 + "protocol_id": 1056 }, "minecraft:golden_chestplate": { - "protocol_id": 829 + "protocol_id": 833 }, "minecraft:golden_helmet": { - "protocol_id": 828 + "protocol_id": 832 }, "minecraft:golden_hoe": { - "protocol_id": 787 + "protocol_id": 791 }, "minecraft:golden_horse_armor": { - "protocol_id": 1075 + "protocol_id": 1079 }, "minecraft:golden_leggings": { - "protocol_id": 830 + "protocol_id": 834 }, "minecraft:golden_pickaxe": { - "protocol_id": 785 + "protocol_id": 789 }, "minecraft:golden_shovel": { - "protocol_id": 784 + "protocol_id": 788 }, "minecraft:golden_sword": { - "protocol_id": 783 + "protocol_id": 787 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 622 + "protocol_id": 625 }, "minecraft:granite_stairs": { - "protocol_id": 605 + "protocol_id": 608 }, "minecraft:granite_wall": { - "protocol_id": 379 + "protocol_id": 381 }, "minecraft:grass": { - "protocol_id": 172 + "protocol_id": 173 }, "minecraft:grass_block": { "protocol_id": 14 }, "minecraft:gravel": { - "protocol_id": 47 + "protocol_id": 48 }, "minecraft:gray_banner": { - "protocol_id": 1090 + "protocol_id": 1094 }, "minecraft:gray_bed": { - "protocol_id": 927 + "protocol_id": 931 }, "minecraft:gray_candle": { - "protocol_id": 1192 - }, - "minecraft:gray_carpet": { - "protocol_id": 429 - }, - "minecraft:gray_concrete": { - "protocol_id": 538 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 554 - }, - "minecraft:gray_dye": { - "protocol_id": 907 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 522 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 506 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 454 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 470 - }, - "minecraft:gray_terracotta": { - "protocol_id": 410 - }, - "minecraft:gray_wool": { - "protocol_id": 186 - }, - "minecraft:green_banner": { - "protocol_id": 1096 - }, - "minecraft:green_bed": { - "protocol_id": 933 - }, - "minecraft:green_candle": { "protocol_id": 1198 }, + "minecraft:gray_carpet": { + "protocol_id": 431 + }, + "minecraft:gray_concrete": { + "protocol_id": 540 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 556 + }, + "minecraft:gray_dye": { + "protocol_id": 911 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 524 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 508 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 456 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 472 + }, + "minecraft:gray_terracotta": { + "protocol_id": 412 + }, + "minecraft:gray_wool": { + "protocol_id": 187 + }, + "minecraft:green_banner": { + "protocol_id": 1100 + }, + "minecraft:green_bed": { + "protocol_id": 937 + }, + "minecraft:green_candle": { + "protocol_id": 1204 + }, "minecraft:green_carpet": { - "protocol_id": 435 + "protocol_id": 437 }, "minecraft:green_concrete": { - "protocol_id": 544 + "protocol_id": 546 }, "minecraft:green_concrete_powder": { - "protocol_id": 560 + "protocol_id": 562 }, "minecraft:green_dye": { - "protocol_id": 913 + "protocol_id": 917 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 528 + "protocol_id": 530 }, "minecraft:green_shulker_box": { - "protocol_id": 512 + "protocol_id": 514 }, "minecraft:green_stained_glass": { - "protocol_id": 460 + "protocol_id": 462 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 476 + "protocol_id": 478 }, "minecraft:green_terracotta": { - "protocol_id": 416 + "protocol_id": 418 }, "minecraft:green_wool": { - "protocol_id": 192 + "protocol_id": 193 }, "minecraft:grindstone": { - "protocol_id": 1153 + "protocol_id": 1159 }, "minecraft:guardian_spawn_egg": { - "protocol_id": 988 - }, - "minecraft:gunpowder": { - "protocol_id": 808 - }, - "minecraft:hanging_roots": { - "protocol_id": 224 - }, - "minecraft:hay_block": { - "protocol_id": 421 - }, - "minecraft:heart_of_the_sea": { - "protocol_id": 1136 - }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 672 - }, - "minecraft:hoglin_spawn_egg": { - "protocol_id": 989 - }, - "minecraft:honey_block": { - "protocol_id": 640 - }, - "minecraft:honey_bottle": { - "protocol_id": 1167 - }, - "minecraft:honeycomb": { - "protocol_id": 1164 - }, - "minecraft:honeycomb_block": { - "protocol_id": 1168 - }, - "minecraft:hopper": { - "protocol_id": 642 - }, - "minecraft:hopper_minecart": { - "protocol_id": 728 - }, - "minecraft:horn_coral": { - "protocol_id": 578 - }, - "minecraft:horn_coral_block": { - "protocol_id": 573 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 588 - }, - "minecraft:horse_spawn_egg": { - "protocol_id": 990 - }, - "minecraft:husk_spawn_egg": { - "protocol_id": 991 - }, - "minecraft:ice": { - "protocol_id": 282 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 314 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 310 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 313 - }, - "minecraft:infested_deepslate": { - "protocol_id": 315 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 312 - }, - "minecraft:infested_stone": { - "protocol_id": 309 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 311 - }, - "minecraft:ink_sac": { - "protocol_id": 897 - }, - "minecraft:iron_axe": { - "protocol_id": 791 - }, - "minecraft:iron_bars": { - "protocol_id": 331 - }, - "minecraft:iron_block": { - "protocol_id": 73 - }, - "minecraft:iron_boots": { - "protocol_id": 823 - }, - "minecraft:iron_chestplate": { - "protocol_id": 821 - }, - "minecraft:iron_door": { - "protocol_id": 684 - }, - "minecraft:iron_golem_spawn_egg": { "protocol_id": 992 }, - "minecraft:iron_helmet": { - "protocol_id": 820 + "minecraft:gunpowder": { + "protocol_id": 812 }, - "minecraft:iron_hoe": { - "protocol_id": 792 + "minecraft:hanging_roots": { + "protocol_id": 226 }, - "minecraft:iron_horse_armor": { - "protocol_id": 1074 + "minecraft:hay_block": { + "protocol_id": 423 }, - "minecraft:iron_ingot": { - "protocol_id": 766 + "minecraft:heart_of_the_sea": { + "protocol_id": 1142 }, - "minecraft:iron_leggings": { - "protocol_id": 822 + "minecraft:heart_pottery_sherd": { + "protocol_id": 1244 }, - "minecraft:iron_nugget": { - "protocol_id": 1114 + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1245 }, - "minecraft:iron_ore": { - "protocol_id": 50 + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 676 }, - "minecraft:iron_pickaxe": { - "protocol_id": 790 + "minecraft:hoglin_spawn_egg": { + "protocol_id": 993 }, - "minecraft:iron_shovel": { - "protocol_id": 789 + "minecraft:honey_block": { + "protocol_id": 643 }, - "minecraft:iron_sword": { - "protocol_id": 788 + "minecraft:honey_bottle": { + "protocol_id": 1173 }, - "minecraft:iron_trapdoor": { - "protocol_id": 696 + "minecraft:honeycomb": { + "protocol_id": 1170 }, - "minecraft:item_frame": { - "protocol_id": 1044 + "minecraft:honeycomb_block": { + "protocol_id": 1174 }, - "minecraft:jack_o_lantern": { - "protocol_id": 300 + "minecraft:hopper": { + "protocol_id": 645 }, - "minecraft:jigsaw": { - "protocol_id": 751 + "minecraft:hopper_minecart": { + "protocol_id": 732 }, - "minecraft:jukebox": { - "protocol_id": 286 + "minecraft:horn_coral": { + "protocol_id": 581 }, - "minecraft:jungle_boat": { - "protocol_id": 738 + "minecraft:horn_coral_block": { + "protocol_id": 576 }, - "minecraft:jungle_button": { - "protocol_id": 661 + "minecraft:horn_coral_fan": { + "protocol_id": 591 }, - "minecraft:jungle_chest_boat": { - "protocol_id": 739 + "minecraft:horse_spawn_egg": { + "protocol_id": 994 }, - "minecraft:jungle_door": { + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1234 + }, + "minecraft:howl_pottery_sherd": { + "protocol_id": 1246 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 995 + }, + "minecraft:ice": { + "protocol_id": 284 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 316 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 312 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 315 + }, + "minecraft:infested_deepslate": { + "protocol_id": 317 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 314 + }, + "minecraft:infested_stone": { + "protocol_id": 311 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 313 + }, + "minecraft:ink_sac": { + "protocol_id": 901 + }, + "minecraft:iron_axe": { + "protocol_id": 795 + }, + "minecraft:iron_bars": { + "protocol_id": 333 + }, + "minecraft:iron_block": { + "protocol_id": 74 + }, + "minecraft:iron_boots": { + "protocol_id": 827 + }, + "minecraft:iron_chestplate": { + "protocol_id": 825 + }, + "minecraft:iron_door": { "protocol_id": 688 }, + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 996 + }, + "minecraft:iron_helmet": { + "protocol_id": 824 + }, + "minecraft:iron_hoe": { + "protocol_id": 796 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1078 + }, + "minecraft:iron_ingot": { + "protocol_id": 770 + }, + "minecraft:iron_leggings": { + "protocol_id": 826 + }, + "minecraft:iron_nugget": { + "protocol_id": 1119 + }, + "minecraft:iron_ore": { + "protocol_id": 51 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 794 + }, + "minecraft:iron_shovel": { + "protocol_id": 793 + }, + "minecraft:iron_sword": { + "protocol_id": 792 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 700 + }, + "minecraft:item_frame": { + "protocol_id": 1048 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 302 + }, + "minecraft:jigsaw": { + "protocol_id": 755 + }, + "minecraft:jukebox": { + "protocol_id": 288 + }, + "minecraft:jungle_boat": { + "protocol_id": 742 + }, + "minecraft:jungle_button": { + "protocol_id": 665 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 743 + }, + "minecraft:jungle_door": { + "protocol_id": 692 + }, "minecraft:jungle_fence": { - "protocol_id": 290 + "protocol_id": 292 }, "minecraft:jungle_fence_gate": { - "protocol_id": 711 + "protocol_id": 715 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 856 + "protocol_id": 860 }, "minecraft:jungle_leaves": { - "protocol_id": 156 + "protocol_id": 157 }, "minecraft:jungle_log": { - "protocol_id": 112 + "protocol_id": 113 }, "minecraft:jungle_planks": { "protocol_id": 26 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 676 + "protocol_id": 680 }, "minecraft:jungle_sapling": { "protocol_id": 38 }, "minecraft:jungle_sign": { - "protocol_id": 845 + "protocol_id": 849 }, "minecraft:jungle_slab": { - "protocol_id": 231 + "protocol_id": 233 }, "minecraft:jungle_stairs": { - "protocol_id": 362 + "protocol_id": 364 }, "minecraft:jungle_trapdoor": { - "protocol_id": 700 + "protocol_id": 704 }, "minecraft:jungle_wood": { - "protocol_id": 146 + "protocol_id": 147 }, "minecraft:kelp": { - "protocol_id": 220 + "protocol_id": 222 }, "minecraft:knowledge_book": { - "protocol_id": 1115 + "protocol_id": 1120 }, "minecraft:ladder": { - "protocol_id": 279 + "protocol_id": 281 }, "minecraft:lantern": { - "protocol_id": 1157 + "protocol_id": 1163 }, "minecraft:lapis_block": { - "protocol_id": 167 + "protocol_id": 168 }, "minecraft:lapis_lazuli": { - "protocol_id": 762 + "protocol_id": 766 }, "minecraft:lapis_ore": { - "protocol_id": 60 + "protocol_id": 61 }, "minecraft:large_amethyst_bud": { - "protocol_id": 1203 + "protocol_id": 1209 }, "minecraft:large_fern": { - "protocol_id": 446 + "protocol_id": 448 }, "minecraft:lava_bucket": { - "protocol_id": 866 + "protocol_id": 870 }, "minecraft:lead": { - "protocol_id": 1078 + "protocol_id": 1082 }, "minecraft:leather": { - "protocol_id": 869 + "protocol_id": 873 }, "minecraft:leather_boots": { - "protocol_id": 815 + "protocol_id": 819 }, "minecraft:leather_chestplate": { - "protocol_id": 813 + "protocol_id": 817 }, "minecraft:leather_helmet": { - "protocol_id": 812 + "protocol_id": 816 }, "minecraft:leather_horse_armor": { - "protocol_id": 1077 + "protocol_id": 1081 }, "minecraft:leather_leggings": { - "protocol_id": 814 + "protocol_id": 818 }, "minecraft:lectern": { - "protocol_id": 645 - }, - "minecraft:lever": { - "protocol_id": 647 - }, - "minecraft:light": { - "protocol_id": 420 - }, - "minecraft:light_blue_banner": { - "protocol_id": 1086 - }, - "minecraft:light_blue_bed": { - "protocol_id": 923 - }, - "minecraft:light_blue_candle": { - "protocol_id": 1188 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 425 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 534 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 550 - }, - "minecraft:light_blue_dye": { - "protocol_id": 903 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 518 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 502 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 450 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 466 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 406 - }, - "minecraft:light_blue_wool": { - "protocol_id": 182 - }, - "minecraft:light_gray_banner": { - "protocol_id": 1091 - }, - "minecraft:light_gray_bed": { - "protocol_id": 928 - }, - "minecraft:light_gray_candle": { - "protocol_id": 1193 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 430 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 539 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 555 - }, - "minecraft:light_gray_dye": { - "protocol_id": 908 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 523 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 507 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 455 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 471 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 411 - }, - "minecraft:light_gray_wool": { - "protocol_id": 187 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 671 - }, - "minecraft:lightning_rod": { "protocol_id": 648 }, - "minecraft:lilac": { - "protocol_id": 442 + "minecraft:lever": { + "protocol_id": 650 }, - "minecraft:lily_of_the_valley": { - "protocol_id": 206 + "minecraft:light": { + "protocol_id": 422 }, - "minecraft:lily_pad": { - "protocol_id": 341 + "minecraft:light_blue_banner": { + "protocol_id": 1090 }, - "minecraft:lime_banner": { - "protocol_id": 1088 + "minecraft:light_blue_bed": { + "protocol_id": 927 }, - "minecraft:lime_bed": { - "protocol_id": 925 + "minecraft:light_blue_candle": { + "protocol_id": 1194 }, - "minecraft:lime_candle": { - "protocol_id": 1190 - }, - "minecraft:lime_carpet": { + "minecraft:light_blue_carpet": { "protocol_id": 427 }, - "minecraft:lime_concrete": { + "minecraft:light_blue_concrete": { "protocol_id": 536 }, - "minecraft:lime_concrete_powder": { + "minecraft:light_blue_concrete_powder": { "protocol_id": 552 }, - "minecraft:lime_dye": { - "protocol_id": 905 + "minecraft:light_blue_dye": { + "protocol_id": 907 }, - "minecraft:lime_glazed_terracotta": { + "minecraft:light_blue_glazed_terracotta": { "protocol_id": 520 }, - "minecraft:lime_shulker_box": { + "minecraft:light_blue_shulker_box": { "protocol_id": 504 }, - "minecraft:lime_stained_glass": { + "minecraft:light_blue_stained_glass": { "protocol_id": 452 }, - "minecraft:lime_stained_glass_pane": { + "minecraft:light_blue_stained_glass_pane": { "protocol_id": 468 }, - "minecraft:lime_terracotta": { + "minecraft:light_blue_terracotta": { "protocol_id": 408 }, + "minecraft:light_blue_wool": { + "protocol_id": 183 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1095 + }, + "minecraft:light_gray_bed": { + "protocol_id": 932 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1199 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 432 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 541 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 557 + }, + "minecraft:light_gray_dye": { + "protocol_id": 912 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 525 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 509 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 457 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 473 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 413 + }, + "minecraft:light_gray_wool": { + "protocol_id": 188 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 675 + }, + "minecraft:lightning_rod": { + "protocol_id": 651 + }, + "minecraft:lilac": { + "protocol_id": 444 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 207 + }, + "minecraft:lily_pad": { + "protocol_id": 343 + }, + "minecraft:lime_banner": { + "protocol_id": 1092 + }, + "minecraft:lime_bed": { + "protocol_id": 929 + }, + "minecraft:lime_candle": { + "protocol_id": 1196 + }, + "minecraft:lime_carpet": { + "protocol_id": 429 + }, + "minecraft:lime_concrete": { + "protocol_id": 538 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 554 + }, + "minecraft:lime_dye": { + "protocol_id": 909 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 522 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 506 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 454 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 470 + }, + "minecraft:lime_terracotta": { + "protocol_id": 410 + }, "minecraft:lime_wool": { - "protocol_id": 184 + "protocol_id": 185 }, "minecraft:lingering_potion": { - "protocol_id": 1110 + "protocol_id": 1115 }, "minecraft:llama_spawn_egg": { - "protocol_id": 993 + "protocol_id": 997 }, "minecraft:lodestone": { - "protocol_id": 1169 + "protocol_id": 1175 }, "minecraft:loom": { - "protocol_id": 1139 + "protocol_id": 1145 }, "minecraft:magenta_banner": { - "protocol_id": 1085 + "protocol_id": 1089 }, "minecraft:magenta_bed": { - "protocol_id": 922 + "protocol_id": 926 }, "minecraft:magenta_candle": { - "protocol_id": 1187 + "protocol_id": 1193 }, "minecraft:magenta_carpet": { - "protocol_id": 424 + "protocol_id": 426 }, "minecraft:magenta_concrete": { - "protocol_id": 533 + "protocol_id": 535 }, "minecraft:magenta_concrete_powder": { - "protocol_id": 549 + "protocol_id": 551 }, "minecraft:magenta_dye": { - "protocol_id": 902 + "protocol_id": 906 }, "minecraft:magenta_glazed_terracotta": { - "protocol_id": 517 + "protocol_id": 519 }, "minecraft:magenta_shulker_box": { - "protocol_id": 501 + "protocol_id": 503 }, "minecraft:magenta_stained_glass": { - "protocol_id": 449 + "protocol_id": 451 }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 465 + "protocol_id": 467 }, "minecraft:magenta_terracotta": { - "protocol_id": 405 + "protocol_id": 407 }, "minecraft:magenta_wool": { - "protocol_id": 181 + "protocol_id": 182 }, "minecraft:magma_block": { - "protocol_id": 492 + "protocol_id": 494 }, "minecraft:magma_cream": { - "protocol_id": 958 + "protocol_id": 962 }, "minecraft:magma_cube_spawn_egg": { - "protocol_id": 994 + "protocol_id": 998 }, "minecraft:mangrove_boat": { - "protocol_id": 746 + "protocol_id": 750 }, "minecraft:mangrove_button": { - "protocol_id": 665 + "protocol_id": 669 }, "minecraft:mangrove_chest_boat": { - "protocol_id": 747 + "protocol_id": 751 }, "minecraft:mangrove_door": { - "protocol_id": 692 + "protocol_id": 696 }, "minecraft:mangrove_fence": { - "protocol_id": 294 + "protocol_id": 296 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 715 + "protocol_id": 719 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 860 + "protocol_id": 864 }, "minecraft:mangrove_leaves": { - "protocol_id": 160 + "protocol_id": 161 }, "minecraft:mangrove_log": { - "protocol_id": 116 + "protocol_id": 117 }, "minecraft:mangrove_planks": { "protocol_id": 30 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 680 + "protocol_id": 684 }, "minecraft:mangrove_propagule": { "protocol_id": 42 }, "minecraft:mangrove_roots": { - "protocol_id": 117 + "protocol_id": 118 }, "minecraft:mangrove_sign": { - "protocol_id": 849 + "protocol_id": 853 }, "minecraft:mangrove_slab": { - "protocol_id": 235 + "protocol_id": 237 }, "minecraft:mangrove_stairs": { - "protocol_id": 366 + "protocol_id": 368 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 704 + "protocol_id": 708 }, "minecraft:mangrove_wood": { - "protocol_id": 150 + "protocol_id": 151 }, "minecraft:map": { - "protocol_id": 1051 + "protocol_id": 1055 }, "minecraft:medium_amethyst_bud": { - "protocol_id": 1202 + "protocol_id": 1208 }, "minecraft:melon": { - "protocol_id": 334 + "protocol_id": 336 }, "minecraft:melon_seeds": { - "protocol_id": 942 + "protocol_id": 946 }, "minecraft:melon_slice": { - "protocol_id": 939 + "protocol_id": 943 }, "minecraft:milk_bucket": { - "protocol_id": 870 + "protocol_id": 874 }, "minecraft:minecart": { - "protocol_id": 724 + "protocol_id": 728 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1247 }, "minecraft:mojang_banner_pattern": { - "protocol_id": 1143 + "protocol_id": 1149 }, "minecraft:mooshroom_spawn_egg": { - "protocol_id": 995 + "protocol_id": 999 }, "minecraft:moss_block": { - "protocol_id": 223 + "protocol_id": 225 }, "minecraft:moss_carpet": { - "protocol_id": 221 + "protocol_id": 223 }, "minecraft:mossy_cobblestone": { - "protocol_id": 265 + "protocol_id": 267 }, "minecraft:mossy_cobblestone_slab": { - "protocol_id": 618 + "protocol_id": 621 }, "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 600 + "protocol_id": 603 }, "minecraft:mossy_cobblestone_wall": { - "protocol_id": 374 + "protocol_id": 376 }, "minecraft:mossy_stone_brick_slab": { - "protocol_id": 616 + "protocol_id": 619 }, "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 598 + "protocol_id": 601 }, "minecraft:mossy_stone_brick_wall": { - "protocol_id": 378 + "protocol_id": 380 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 317 + "protocol_id": 319 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1248 }, "minecraft:mud": { "protocol_id": 19 }, "minecraft:mud_brick_slab": { - "protocol_id": 248 + "protocol_id": 250 }, "minecraft:mud_brick_stairs": { - "protocol_id": 339 + "protocol_id": 341 }, "minecraft:mud_brick_wall": { - "protocol_id": 381 + "protocol_id": 383 }, "minecraft:mud_bricks": { - "protocol_id": 321 + "protocol_id": 323 }, "minecraft:muddy_mangrove_roots": { - "protocol_id": 118 + "protocol_id": 119 }, "minecraft:mule_spawn_egg": { - "protocol_id": 996 + "protocol_id": 1000 }, "minecraft:mushroom_stem": { - "protocol_id": 330 + "protocol_id": 332 }, "minecraft:mushroom_stew": { - "protocol_id": 805 + "protocol_id": 809 }, "minecraft:music_disc_11": { - "protocol_id": 1127 + "protocol_id": 1132 }, "minecraft:music_disc_13": { - "protocol_id": 1117 - }, - "minecraft:music_disc_5": { - "protocol_id": 1130 - }, - "minecraft:music_disc_blocks": { - "protocol_id": 1119 - }, - "minecraft:music_disc_cat": { - "protocol_id": 1118 - }, - "minecraft:music_disc_chirp": { - "protocol_id": 1120 - }, - "minecraft:music_disc_far": { - "protocol_id": 1121 - }, - "minecraft:music_disc_mall": { "protocol_id": 1122 }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1123 + "minecraft:music_disc_5": { + "protocol_id": 1136 }, - "minecraft:music_disc_otherside": { - "protocol_id": 1129 - }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1131 - }, - "minecraft:music_disc_stal": { + "minecraft:music_disc_blocks": { "protocol_id": 1124 }, - "minecraft:music_disc_strad": { + "minecraft:music_disc_cat": { + "protocol_id": 1123 + }, + "minecraft:music_disc_chirp": { "protocol_id": 1125 }, - "minecraft:music_disc_wait": { - "protocol_id": 1128 - }, - "minecraft:music_disc_ward": { + "minecraft:music_disc_far": { "protocol_id": 1126 }, - "minecraft:mutton": { - "protocol_id": 1081 + "minecraft:music_disc_mall": { + "protocol_id": 1127 }, - "minecraft:mycelium": { - "protocol_id": 340 + "minecraft:music_disc_mellohi": { + "protocol_id": 1128 }, - "minecraft:name_tag": { - "protocol_id": 1079 + "minecraft:music_disc_otherside": { + "protocol_id": 1134 }, - "minecraft:nautilus_shell": { + "minecraft:music_disc_pigstep": { + "protocol_id": 1137 + }, + "minecraft:music_disc_relic": { "protocol_id": 1135 }, - "minecraft:nether_brick": { - "protocol_id": 1065 + "minecraft:music_disc_stal": { + "protocol_id": 1129 }, - "minecraft:nether_brick_fence": { - "protocol_id": 345 + "minecraft:music_disc_strad": { + "protocol_id": 1130 }, - "minecraft:nether_brick_slab": { - "protocol_id": 249 + "minecraft:music_disc_wait": { + "protocol_id": 1133 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 346 + "minecraft:music_disc_ward": { + "protocol_id": 1131 }, - "minecraft:nether_brick_wall": { - "protocol_id": 382 + "minecraft:mutton": { + "protocol_id": 1085 }, - "minecraft:nether_bricks": { + "minecraft:mycelium": { "protocol_id": 342 }, - "minecraft:nether_gold_ore": { - "protocol_id": 64 + "minecraft:name_tag": { + "protocol_id": 1083 }, - "minecraft:nether_quartz_ore": { + "minecraft:nautilus_shell": { + "protocol_id": 1141 + }, + "minecraft:nether_brick": { + "protocol_id": 1069 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 347 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 251 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 348 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 384 + }, + "minecraft:nether_bricks": { + "protocol_id": 344 + }, + "minecraft:nether_gold_ore": { "protocol_id": 65 }, + "minecraft:nether_quartz_ore": { + "protocol_id": 66 + }, "minecraft:nether_sprouts": { - "protocol_id": 216 + "protocol_id": 218 }, "minecraft:nether_star": { - "protocol_id": 1060 + "protocol_id": 1064 }, "minecraft:nether_wart": { - "protocol_id": 952 + "protocol_id": 956 }, "minecraft:nether_wart_block": { - "protocol_id": 493 + "protocol_id": 495 }, "minecraft:netherite_axe": { - "protocol_id": 801 + "protocol_id": 805 }, "minecraft:netherite_block": { - "protocol_id": 77 + "protocol_id": 78 }, "minecraft:netherite_boots": { - "protocol_id": 835 + "protocol_id": 839 }, "minecraft:netherite_chestplate": { - "protocol_id": 833 + "protocol_id": 837 }, "minecraft:netherite_helmet": { - "protocol_id": 832 + "protocol_id": 836 }, "minecraft:netherite_hoe": { - "protocol_id": 802 + "protocol_id": 806 }, "minecraft:netherite_ingot": { - "protocol_id": 771 + "protocol_id": 775 }, "minecraft:netherite_leggings": { - "protocol_id": 834 + "protocol_id": 838 }, "minecraft:netherite_pickaxe": { - "protocol_id": 800 + "protocol_id": 804 }, "minecraft:netherite_scrap": { - "protocol_id": 772 + "protocol_id": 776 }, "minecraft:netherite_shovel": { - "protocol_id": 799 + "protocol_id": 803 }, "minecraft:netherite_sword": { - "protocol_id": 798 + "protocol_id": 802 }, "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1212 + "protocol_id": 1218 }, "minecraft:netherrack": { - "protocol_id": 301 + "protocol_id": 303 }, "minecraft:note_block": { - "protocol_id": 655 + "protocol_id": 659 }, "minecraft:oak_boat": { - "protocol_id": 732 + "protocol_id": 736 }, "minecraft:oak_button": { - "protocol_id": 658 + "protocol_id": 662 }, "minecraft:oak_chest_boat": { - "protocol_id": 733 + "protocol_id": 737 }, "minecraft:oak_door": { - "protocol_id": 685 + "protocol_id": 689 }, "minecraft:oak_fence": { - "protocol_id": 287 + "protocol_id": 289 }, "minecraft:oak_fence_gate": { - "protocol_id": 708 + "protocol_id": 712 }, "minecraft:oak_hanging_sign": { - "protocol_id": 853 + "protocol_id": 857 }, "minecraft:oak_leaves": { - "protocol_id": 153 + "protocol_id": 154 }, "minecraft:oak_log": { - "protocol_id": 109 + "protocol_id": 110 }, "minecraft:oak_planks": { "protocol_id": 23 }, "minecraft:oak_pressure_plate": { - "protocol_id": 673 + "protocol_id": 677 }, "minecraft:oak_sapling": { "protocol_id": 35 }, "minecraft:oak_sign": { - "protocol_id": 842 + "protocol_id": 846 }, "minecraft:oak_slab": { - "protocol_id": 228 + "protocol_id": 230 }, "minecraft:oak_stairs": { - "protocol_id": 359 + "protocol_id": 361 }, "minecraft:oak_trapdoor": { - "protocol_id": 697 + "protocol_id": 701 }, "minecraft:oak_wood": { - "protocol_id": 143 + "protocol_id": 144 }, "minecraft:observer": { - "protocol_id": 641 + "protocol_id": 644 }, "minecraft:obsidian": { - "protocol_id": 266 + "protocol_id": 268 }, "minecraft:ocelot_spawn_egg": { - "protocol_id": 997 - }, - "minecraft:ochre_froglight": { - "protocol_id": 1206 - }, - "minecraft:orange_banner": { - "protocol_id": 1084 - }, - "minecraft:orange_bed": { - "protocol_id": 921 - }, - "minecraft:orange_candle": { - "protocol_id": 1186 - }, - "minecraft:orange_carpet": { - "protocol_id": 423 - }, - "minecraft:orange_concrete": { - "protocol_id": 532 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 548 - }, - "minecraft:orange_dye": { - "protocol_id": 901 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 516 - }, - "minecraft:orange_shulker_box": { - "protocol_id": 500 - }, - "minecraft:orange_stained_glass": { - "protocol_id": 448 - }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 464 - }, - "minecraft:orange_terracotta": { - "protocol_id": 404 - }, - "minecraft:orange_tulip": { - "protocol_id": 201 - }, - "minecraft:orange_wool": { - "protocol_id": 180 - }, - "minecraft:oxeye_daisy": { - "protocol_id": 204 - }, - "minecraft:oxidized_copper": { - "protocol_id": 80 - }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 84 - }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 92 - }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 88 - }, - "minecraft:packed_ice": { - "protocol_id": 439 - }, - "minecraft:packed_mud": { - "protocol_id": 320 - }, - "minecraft:painting": { - "protocol_id": 839 - }, - "minecraft:panda_spawn_egg": { - "protocol_id": 998 - }, - "minecraft:paper": { - "protocol_id": 880 - }, - "minecraft:parrot_spawn_egg": { - "protocol_id": 999 - }, - "minecraft:pearlescent_froglight": { - "protocol_id": 1208 - }, - "minecraft:peony": { - "protocol_id": 444 - }, - "minecraft:petrified_oak_slab": { - "protocol_id": 244 - }, - "minecraft:phantom_membrane": { - "protocol_id": 1134 - }, - "minecraft:phantom_spawn_egg": { - "protocol_id": 1000 - }, - "minecraft:pig_spawn_egg": { "protocol_id": 1001 }, - "minecraft:piglin_banner_pattern": { - "protocol_id": 1145 + "minecraft:ochre_froglight": { + "protocol_id": 1212 }, - "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1003 + "minecraft:orange_banner": { + "protocol_id": 1088 }, - "minecraft:piglin_head": { - "protocol_id": 1059 + "minecraft:orange_bed": { + "protocol_id": 925 }, - "minecraft:piglin_spawn_egg": { + "minecraft:orange_candle": { + "protocol_id": 1192 + }, + "minecraft:orange_carpet": { + "protocol_id": 425 + }, + "minecraft:orange_concrete": { + "protocol_id": 534 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 550 + }, + "minecraft:orange_dye": { + "protocol_id": 905 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 518 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 502 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 450 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 466 + }, + "minecraft:orange_terracotta": { + "protocol_id": 406 + }, + "minecraft:orange_tulip": { + "protocol_id": 202 + }, + "minecraft:orange_wool": { + "protocol_id": 181 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 205 + }, + "minecraft:oxidized_copper": { + "protocol_id": 81 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 85 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 93 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 89 + }, + "minecraft:packed_ice": { + "protocol_id": 441 + }, + "minecraft:packed_mud": { + "protocol_id": 322 + }, + "minecraft:painting": { + "protocol_id": 843 + }, + "minecraft:panda_spawn_egg": { "protocol_id": 1002 }, - "minecraft:pillager_spawn_egg": { + "minecraft:paper": { + "protocol_id": 884 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1003 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1214 + }, + "minecraft:peony": { + "protocol_id": 446 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 246 + }, + "minecraft:phantom_membrane": { + "protocol_id": 1140 + }, + "minecraft:phantom_spawn_egg": { "protocol_id": 1004 }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1005 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1151 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1007 + }, + "minecraft:piglin_head": { + "protocol_id": 1063 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1006 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1008 + }, "minecraft:pink_banner": { - "protocol_id": 1089 + "protocol_id": 1093 }, "minecraft:pink_bed": { - "protocol_id": 926 + "protocol_id": 930 }, "minecraft:pink_candle": { - "protocol_id": 1191 + "protocol_id": 1197 }, "minecraft:pink_carpet": { - "protocol_id": 428 + "protocol_id": 430 }, "minecraft:pink_concrete": { - "protocol_id": 537 + "protocol_id": 539 }, "minecraft:pink_concrete_powder": { - "protocol_id": 553 + "protocol_id": 555 }, "minecraft:pink_dye": { - "protocol_id": 906 + "protocol_id": 910 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 521 + "protocol_id": 523 }, "minecraft:pink_petals": { - "protocol_id": 222 + "protocol_id": 224 }, "minecraft:pink_shulker_box": { - "protocol_id": 505 + "protocol_id": 507 }, "minecraft:pink_stained_glass": { - "protocol_id": 453 + "protocol_id": 455 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 469 + "protocol_id": 471 }, "minecraft:pink_terracotta": { - "protocol_id": 409 + "protocol_id": 411 }, "minecraft:pink_tulip": { - "protocol_id": 203 + "protocol_id": 204 }, "minecraft:pink_wool": { - "protocol_id": 185 + "protocol_id": 186 }, "minecraft:piston": { - "protocol_id": 637 + "protocol_id": 640 + }, + "minecraft:pitcher_plant": { + "protocol_id": 210 + }, + "minecraft:pitcher_pod": { + "protocol_id": 1107 }, "minecraft:player_head": { - "protocol_id": 1055 + "protocol_id": 1059 + }, + "minecraft:plenty_pottery_sherd": { + "protocol_id": 1249 }, "minecraft:podzol": { "protocol_id": 17 }, "minecraft:pointed_dripstone": { - "protocol_id": 1205 + "protocol_id": 1211 }, "minecraft:poisonous_potato": { - "protocol_id": 1050 + "protocol_id": 1054 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1005 + "protocol_id": 1009 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 625 + "protocol_id": 628 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 608 + "protocol_id": 611 }, "minecraft:polished_basalt": { - "protocol_id": 305 + "protocol_id": 307 }, "minecraft:polished_blackstone": { - "protocol_id": 1175 - }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1180 - }, - "minecraft:polished_blackstone_brick_stairs": { "protocol_id": 1181 }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1186 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1187 + }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 390 + "protocol_id": 392 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1179 + "protocol_id": 1185 }, "minecraft:polished_blackstone_button": { - "protocol_id": 657 + "protocol_id": 661 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 670 + "protocol_id": 674 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1176 + "protocol_id": 1182 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1177 + "protocol_id": 1183 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 389 + "protocol_id": 391 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 628 + "protocol_id": 631 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 611 + "protocol_id": 614 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 392 + "protocol_id": 394 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 617 + "protocol_id": 620 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 599 + "protocol_id": 602 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 614 + "protocol_id": 617 }, "minecraft:polished_granite_stairs": { - "protocol_id": 596 + "protocol_id": 599 }, "minecraft:popped_chorus_fruit": { - "protocol_id": 1101 + "protocol_id": 1105 }, "minecraft:poppy": { - "protocol_id": 196 + "protocol_id": 197 }, "minecraft:porkchop": { - "protocol_id": 837 + "protocol_id": 841 }, "minecraft:potato": { - "protocol_id": 1048 + "protocol_id": 1052 }, "minecraft:potion": { - "protocol_id": 953 - }, - "minecraft:pottery_shard_archer": { - "protocol_id": 1224 - }, - "minecraft:pottery_shard_arms_up": { - "protocol_id": 1226 - }, - "minecraft:pottery_shard_prize": { - "protocol_id": 1225 - }, - "minecraft:pottery_shard_skull": { - "protocol_id": 1227 + "protocol_id": 957 }, "minecraft:powder_snow_bucket": { - "protocol_id": 867 - }, - "minecraft:powered_rail": { - "protocol_id": 719 - }, - "minecraft:prismarine": { - "protocol_id": 479 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 255 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 483 - }, - "minecraft:prismarine_bricks": { - "protocol_id": 480 - }, - "minecraft:prismarine_crystals": { - "protocol_id": 1067 - }, - "minecraft:prismarine_shard": { - "protocol_id": 1066 - }, - "minecraft:prismarine_slab": { - "protocol_id": 254 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 482 - }, - "minecraft:prismarine_wall": { - "protocol_id": 376 - }, - "minecraft:pufferfish": { - "protocol_id": 894 - }, - "minecraft:pufferfish_bucket": { "protocol_id": 871 }, - "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1006 + "minecraft:powered_rail": { + "protocol_id": 723 }, - "minecraft:pumpkin": { - "protocol_id": 298 + "minecraft:prismarine": { + "protocol_id": 481 }, - "minecraft:pumpkin_pie": { - "protocol_id": 1061 + "minecraft:prismarine_brick_slab": { + "protocol_id": 257 }, - "minecraft:pumpkin_seeds": { - "protocol_id": 941 + "minecraft:prismarine_brick_stairs": { + "protocol_id": 485 }, - "minecraft:purple_banner": { - "protocol_id": 1093 + "minecraft:prismarine_bricks": { + "protocol_id": 482 }, - "minecraft:purple_bed": { - "protocol_id": 930 - }, - "minecraft:purple_candle": { - "protocol_id": 1195 - }, - "minecraft:purple_carpet": { - "protocol_id": 432 - }, - "minecraft:purple_concrete": { - "protocol_id": 541 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 557 - }, - "minecraft:purple_dye": { - "protocol_id": 910 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 525 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 509 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 457 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 473 - }, - "minecraft:purple_terracotta": { - "protocol_id": 413 - }, - "minecraft:purple_wool": { - "protocol_id": 189 - }, - "minecraft:purpur_block": { - "protocol_id": 271 - }, - "minecraft:purpur_pillar": { - "protocol_id": 272 - }, - "minecraft:purpur_slab": { - "protocol_id": 253 - }, - "minecraft:purpur_stairs": { - "protocol_id": 273 - }, - "minecraft:quartz": { - "protocol_id": 763 - }, - "minecraft:quartz_block": { - "protocol_id": 399 - }, - "minecraft:quartz_bricks": { - "protocol_id": 400 - }, - "minecraft:quartz_pillar": { - "protocol_id": 401 - }, - "minecraft:quartz_slab": { - "protocol_id": 250 - }, - "minecraft:quartz_stairs": { - "protocol_id": 402 - }, - "minecraft:rabbit": { - "protocol_id": 1068 - }, - "minecraft:rabbit_foot": { + "minecraft:prismarine_crystals": { "protocol_id": 1071 }, - "minecraft:rabbit_hide": { - "protocol_id": 1072 - }, - "minecraft:rabbit_spawn_egg": { - "protocol_id": 1007 - }, - "minecraft:rabbit_stew": { + "minecraft:prismarine_shard": { "protocol_id": 1070 }, - "minecraft:rail": { - "protocol_id": 721 + "minecraft:prismarine_slab": { + "protocol_id": 256 }, - "minecraft:ravager_spawn_egg": { - "protocol_id": 1008 + "minecraft:prismarine_stairs": { + "protocol_id": 484 }, - "minecraft:raw_copper": { - "protocol_id": 767 + "minecraft:prismarine_wall": { + "protocol_id": 378 }, - "minecraft:raw_copper_block": { - "protocol_id": 69 + "minecraft:prize_pottery_sherd": { + "protocol_id": 1250 }, - "minecraft:raw_gold": { - "protocol_id": 769 + "minecraft:pufferfish": { + "protocol_id": 898 }, - "minecraft:raw_gold_block": { - "protocol_id": 70 + "minecraft:pufferfish_bucket": { + "protocol_id": 875 }, - "minecraft:raw_iron": { - "protocol_id": 765 + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1010 }, - "minecraft:raw_iron_block": { - "protocol_id": 68 + "minecraft:pumpkin": { + "protocol_id": 300 }, - "minecraft:recovery_compass": { - "protocol_id": 885 + "minecraft:pumpkin_pie": { + "protocol_id": 1065 }, - "minecraft:red_banner": { + "minecraft:pumpkin_seeds": { + "protocol_id": 945 + }, + "minecraft:purple_banner": { "protocol_id": 1097 }, - "minecraft:red_bed": { + "minecraft:purple_bed": { "protocol_id": 934 }, - "minecraft:red_candle": { - "protocol_id": 1199 + "minecraft:purple_candle": { + "protocol_id": 1201 }, - "minecraft:red_carpet": { - "protocol_id": 436 + "minecraft:purple_carpet": { + "protocol_id": 434 }, - "minecraft:red_concrete": { - "protocol_id": 545 + "minecraft:purple_concrete": { + "protocol_id": 543 }, - "minecraft:red_concrete_powder": { - "protocol_id": 561 + "minecraft:purple_concrete_powder": { + "protocol_id": 559 }, - "minecraft:red_dye": { + "minecraft:purple_dye": { "protocol_id": 914 }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 527 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 511 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 459 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 475 + }, + "minecraft:purple_terracotta": { + "protocol_id": 415 + }, + "minecraft:purple_wool": { + "protocol_id": 190 + }, + "minecraft:purpur_block": { + "protocol_id": 273 + }, + "minecraft:purpur_pillar": { + "protocol_id": 274 + }, + "minecraft:purpur_slab": { + "protocol_id": 255 + }, + "minecraft:purpur_stairs": { + "protocol_id": 275 + }, + "minecraft:quartz": { + "protocol_id": 767 + }, + "minecraft:quartz_block": { + "protocol_id": 401 + }, + "minecraft:quartz_bricks": { + "protocol_id": 402 + }, + "minecraft:quartz_pillar": { + "protocol_id": 403 + }, + "minecraft:quartz_slab": { + "protocol_id": 252 + }, + "minecraft:quartz_stairs": { + "protocol_id": 404 + }, + "minecraft:rabbit": { + "protocol_id": 1072 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1075 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1076 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 1011 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1074 + }, + "minecraft:rail": { + "protocol_id": 725 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1233 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 1012 + }, + "minecraft:raw_copper": { + "protocol_id": 771 + }, + "minecraft:raw_copper_block": { + "protocol_id": 70 + }, + "minecraft:raw_gold": { + "protocol_id": 773 + }, + "minecraft:raw_gold_block": { + "protocol_id": 71 + }, + "minecraft:raw_iron": { + "protocol_id": 769 + }, + "minecraft:raw_iron_block": { + "protocol_id": 69 + }, + "minecraft:recovery_compass": { + "protocol_id": 889 + }, + "minecraft:red_banner": { + "protocol_id": 1101 + }, + "minecraft:red_bed": { + "protocol_id": 938 + }, + "minecraft:red_candle": { + "protocol_id": 1205 + }, + "minecraft:red_carpet": { + "protocol_id": 438 + }, + "minecraft:red_concrete": { + "protocol_id": 547 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 563 + }, + "minecraft:red_dye": { + "protocol_id": 918 + }, "minecraft:red_glazed_terracotta": { - "protocol_id": 529 + "protocol_id": 531 }, "minecraft:red_mushroom": { - "protocol_id": 211 + "protocol_id": 213 }, "minecraft:red_mushroom_block": { - "protocol_id": 329 + "protocol_id": 331 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 624 + "protocol_id": 627 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 607 + "protocol_id": 610 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 384 + "protocol_id": 386 }, "minecraft:red_nether_bricks": { - "protocol_id": 495 + "protocol_id": 497 }, "minecraft:red_sand": { - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:red_sandstone": { - "protocol_id": 486 + "protocol_id": 488 }, "minecraft:red_sandstone_slab": { - "protocol_id": 251 + "protocol_id": 253 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 489 + "protocol_id": 491 }, "minecraft:red_sandstone_wall": { - "protocol_id": 377 + "protocol_id": 379 }, "minecraft:red_shulker_box": { - "protocol_id": 513 + "protocol_id": 515 }, "minecraft:red_stained_glass": { - "protocol_id": 461 + "protocol_id": 463 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 477 + "protocol_id": 479 }, "minecraft:red_terracotta": { - "protocol_id": 417 + "protocol_id": 419 }, "minecraft:red_tulip": { - "protocol_id": 200 + "protocol_id": 201 }, "minecraft:red_wool": { - "protocol_id": 193 + "protocol_id": 194 }, "minecraft:redstone": { - "protocol_id": 632 - }, - "minecraft:redstone_block": { - "protocol_id": 634 - }, - "minecraft:redstone_lamp": { - "protocol_id": 654 - }, - "minecraft:redstone_ore": { - "protocol_id": 56 - }, - "minecraft:redstone_torch": { - "protocol_id": 633 - }, - "minecraft:reinforced_deepslate": { - "protocol_id": 327 - }, - "minecraft:repeater": { "protocol_id": 635 }, + "minecraft:redstone_block": { + "protocol_id": 637 + }, + "minecraft:redstone_lamp": { + "protocol_id": 658 + }, + "minecraft:redstone_ore": { + "protocol_id": 57 + }, + "minecraft:redstone_torch": { + "protocol_id": 636 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 329 + }, + "minecraft:repeater": { + "protocol_id": 638 + }, "minecraft:repeating_command_block": { - "protocol_id": 490 + "protocol_id": 492 }, "minecraft:respawn_anchor": { - "protocol_id": 1183 + "protocol_id": 1189 }, "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1222 + "protocol_id": 1228 }, "minecraft:rooted_dirt": { "protocol_id": 18 }, "minecraft:rose_bush": { - "protocol_id": 443 + "protocol_id": 445 }, "minecraft:rotten_flesh": { - "protocol_id": 947 + "protocol_id": 951 }, "minecraft:saddle": { - "protocol_id": 723 + "protocol_id": 727 }, "minecraft:salmon": { - "protocol_id": 892 + "protocol_id": 896 }, "minecraft:salmon_bucket": { - "protocol_id": 872 + "protocol_id": 876 }, "minecraft:salmon_spawn_egg": { - "protocol_id": 1009 + "protocol_id": 1013 }, "minecraft:sand": { "protocol_id": 44 }, "minecraft:sandstone": { - "protocol_id": 168 + "protocol_id": 169 }, "minecraft:sandstone_slab": { - "protocol_id": 242 + "protocol_id": 244 }, "minecraft:sandstone_stairs": { - "protocol_id": 356 + "protocol_id": 358 }, "minecraft:sandstone_wall": { - "protocol_id": 385 + "protocol_id": 387 }, "minecraft:scaffolding": { - "protocol_id": 631 + "protocol_id": 634 }, "minecraft:sculk": { - "protocol_id": 347 - }, - "minecraft:sculk_catalyst": { "protocol_id": 349 }, + "minecraft:sculk_catalyst": { + "protocol_id": 351 + }, "minecraft:sculk_sensor": { - "protocol_id": 650 + "protocol_id": 653 }, "minecraft:sculk_shrieker": { - "protocol_id": 350 + "protocol_id": 352 }, "minecraft:sculk_vein": { - "protocol_id": 348 + "protocol_id": 350 }, "minecraft:scute": { - "protocol_id": 753 + "protocol_id": 757 }, "minecraft:sea_lantern": { - "protocol_id": 485 + "protocol_id": 487 }, "minecraft:sea_pickle": { - "protocol_id": 178 + "protocol_id": 179 }, "minecraft:seagrass": { - "protocol_id": 177 + "protocol_id": 178 }, "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1213 + "protocol_id": 1219 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1231 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1251 }, "minecraft:shears": { - "protocol_id": 938 + "protocol_id": 942 }, "minecraft:sheep_spawn_egg": { - "protocol_id": 1010 - }, - "minecraft:shield": { - "protocol_id": 1111 - }, - "minecraft:shroomlight": { - "protocol_id": 1163 - }, - "minecraft:shulker_box": { - "protocol_id": 498 - }, - "minecraft:shulker_shell": { - "protocol_id": 1113 - }, - "minecraft:shulker_spawn_egg": { - "protocol_id": 1011 - }, - "minecraft:silverfish_spawn_egg": { - "protocol_id": 1012 - }, - "minecraft:skeleton_horse_spawn_egg": { "protocol_id": 1014 }, - "minecraft:skeleton_skull": { - "protocol_id": 1053 + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1252 }, - "minecraft:skeleton_spawn_egg": { - "protocol_id": 1013 + "minecraft:shield": { + "protocol_id": 1116 }, - "minecraft:skull_banner_pattern": { - "protocol_id": 1142 + "minecraft:shroomlight": { + "protocol_id": 1169 }, - "minecraft:slime_ball": { - "protocol_id": 882 + "minecraft:shulker_box": { + "protocol_id": 500 }, - "minecraft:slime_block": { - "protocol_id": 639 + "minecraft:shulker_shell": { + "protocol_id": 1118 }, - "minecraft:slime_spawn_egg": { + "minecraft:shulker_spawn_egg": { "protocol_id": 1015 }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1201 + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1232 }, - "minecraft:small_dripleaf": { - "protocol_id": 226 - }, - "minecraft:smithing_table": { - "protocol_id": 1154 - }, - "minecraft:smoker": { - "protocol_id": 1149 - }, - "minecraft:smooth_basalt": { - "protocol_id": 306 - }, - "minecraft:smooth_quartz": { - "protocol_id": 257 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 621 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 604 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 258 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 615 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 597 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 259 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 620 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 603 - }, - "minecraft:smooth_stone": { - "protocol_id": 260 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 241 - }, - "minecraft:sniffer_spawn_egg": { + "minecraft:silverfish_spawn_egg": { "protocol_id": 1016 }, - "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1221 - }, - "minecraft:snow": { - "protocol_id": 281 - }, - "minecraft:snow_block": { - "protocol_id": 283 - }, - "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1017 - }, - "minecraft:snowball": { - "protocol_id": 868 - }, - "minecraft:soul_campfire": { - "protocol_id": 1162 - }, - "minecraft:soul_lantern": { - "protocol_id": 1158 - }, - "minecraft:soul_sand": { - "protocol_id": 302 - }, - "minecraft:soul_soil": { - "protocol_id": 303 - }, - "minecraft:soul_torch": { - "protocol_id": 307 - }, - "minecraft:spawner": { - "protocol_id": 274 - }, - "minecraft:spectral_arrow": { - "protocol_id": 1108 - }, - "minecraft:spider_eye": { - "protocol_id": 955 - }, - "minecraft:spider_spawn_egg": { + "minecraft:skeleton_horse_spawn_egg": { "protocol_id": 1018 }, + "minecraft:skeleton_skull": { + "protocol_id": 1057 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1017 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1148 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1253 + }, + "minecraft:slime_ball": { + "protocol_id": 886 + }, + "minecraft:slime_block": { + "protocol_id": 642 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1019 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1207 + }, + "minecraft:small_dripleaf": { + "protocol_id": 228 + }, + "minecraft:smithing_table": { + "protocol_id": 1160 + }, + "minecraft:smoker": { + "protocol_id": 1155 + }, + "minecraft:smooth_basalt": { + "protocol_id": 308 + }, + "minecraft:smooth_quartz": { + "protocol_id": 259 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 624 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 607 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 260 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 618 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 600 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 261 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 623 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 606 + }, + "minecraft:smooth_stone": { + "protocol_id": 262 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 243 + }, + "minecraft:sniffer_egg": { + "protocol_id": 566 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1020 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1254 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1227 + }, + "minecraft:snow": { + "protocol_id": 283 + }, + "minecraft:snow_block": { + "protocol_id": 285 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1021 + }, + "minecraft:snowball": { + "protocol_id": 872 + }, + "minecraft:soul_campfire": { + "protocol_id": 1168 + }, + "minecraft:soul_lantern": { + "protocol_id": 1164 + }, + "minecraft:soul_sand": { + "protocol_id": 304 + }, + "minecraft:soul_soil": { + "protocol_id": 305 + }, + "minecraft:soul_torch": { + "protocol_id": 309 + }, + "minecraft:spawner": { + "protocol_id": 276 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1113 + }, + "minecraft:spider_eye": { + "protocol_id": 959 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1022 + }, "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1223 + "protocol_id": 1229 }, "minecraft:splash_potion": { - "protocol_id": 1107 + "protocol_id": 1112 }, "minecraft:sponge": { - "protocol_id": 163 + "protocol_id": 164 }, "minecraft:spore_blossom": { - "protocol_id": 209 + "protocol_id": 211 }, "minecraft:spruce_boat": { - "protocol_id": 734 + "protocol_id": 738 }, "minecraft:spruce_button": { - "protocol_id": 659 + "protocol_id": 663 }, "minecraft:spruce_chest_boat": { - "protocol_id": 735 + "protocol_id": 739 }, "minecraft:spruce_door": { - "protocol_id": 686 + "protocol_id": 690 }, "minecraft:spruce_fence": { - "protocol_id": 288 + "protocol_id": 290 }, "minecraft:spruce_fence_gate": { - "protocol_id": 709 + "protocol_id": 713 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 854 + "protocol_id": 858 }, "minecraft:spruce_leaves": { - "protocol_id": 154 + "protocol_id": 155 }, "minecraft:spruce_log": { - "protocol_id": 110 + "protocol_id": 111 }, "minecraft:spruce_planks": { "protocol_id": 24 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 674 + "protocol_id": 678 }, "minecraft:spruce_sapling": { "protocol_id": 36 }, "minecraft:spruce_sign": { - "protocol_id": 843 + "protocol_id": 847 }, "minecraft:spruce_slab": { - "protocol_id": 229 + "protocol_id": 231 }, "minecraft:spruce_stairs": { - "protocol_id": 360 + "protocol_id": 362 }, "minecraft:spruce_trapdoor": { - "protocol_id": 698 + "protocol_id": 702 }, "minecraft:spruce_wood": { - "protocol_id": 144 + "protocol_id": 145 }, "minecraft:spyglass": { - "protocol_id": 889 + "protocol_id": 893 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1019 + "protocol_id": 1023 }, "minecraft:stick": { - "protocol_id": 803 + "protocol_id": 807 }, "minecraft:sticky_piston": { - "protocol_id": 638 + "protocol_id": 641 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 781 + "protocol_id": 785 }, "minecraft:stone_brick_slab": { - "protocol_id": 247 + "protocol_id": 249 }, "minecraft:stone_brick_stairs": { - "protocol_id": 338 + "protocol_id": 340 }, "minecraft:stone_brick_wall": { - "protocol_id": 380 + "protocol_id": 382 }, "minecraft:stone_bricks": { - "protocol_id": 316 + "protocol_id": 318 }, "minecraft:stone_button": { - "protocol_id": 656 + "protocol_id": 660 }, "minecraft:stone_hoe": { - "protocol_id": 782 + "protocol_id": 786 }, "minecraft:stone_pickaxe": { - "protocol_id": 780 + "protocol_id": 784 }, "minecraft:stone_pressure_plate": { - "protocol_id": 669 + "protocol_id": 673 }, "minecraft:stone_shovel": { - "protocol_id": 779 + "protocol_id": 783 }, "minecraft:stone_slab": { - "protocol_id": 240 + "protocol_id": 242 }, "minecraft:stone_stairs": { - "protocol_id": 602 + "protocol_id": 605 }, "minecraft:stone_sword": { - "protocol_id": 778 + "protocol_id": 782 }, "minecraft:stonecutter": { - "protocol_id": 1155 + "protocol_id": 1161 }, "minecraft:stray_spawn_egg": { - "protocol_id": 1020 + "protocol_id": 1024 }, "minecraft:strider_spawn_egg": { - "protocol_id": 1021 + "protocol_id": 1025 }, "minecraft:string": { - "protocol_id": 806 + "protocol_id": 810 }, "minecraft:stripped_acacia_log": { - "protocol_id": 126 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 136 - }, - "minecraft:stripped_bamboo_block": { - "protocol_id": 142 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 124 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 134 - }, - "minecraft:stripped_cherry_log": { "protocol_id": 127 }, - "minecraft:stripped_cherry_wood": { + "minecraft:stripped_acacia_wood": { "protocol_id": 137 }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 140 + "minecraft:stripped_bamboo_block": { + "protocol_id": 143 }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 130 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 128 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 138 - }, - "minecraft:stripped_jungle_log": { + "minecraft:stripped_birch_log": { "protocol_id": 125 }, - "minecraft:stripped_jungle_wood": { + "minecraft:stripped_birch_wood": { "protocol_id": 135 }, - "minecraft:stripped_mangrove_log": { - "protocol_id": 129 + "minecraft:stripped_cherry_log": { + "protocol_id": 128 }, - "minecraft:stripped_mangrove_wood": { - "protocol_id": 139 + "minecraft:stripped_cherry_wood": { + "protocol_id": 138 }, - "minecraft:stripped_oak_log": { - "protocol_id": 122 - }, - "minecraft:stripped_oak_wood": { - "protocol_id": 132 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 123 - }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 133 - }, - "minecraft:stripped_warped_hyphae": { + "minecraft:stripped_crimson_hyphae": { "protocol_id": 141 }, - "minecraft:stripped_warped_stem": { + "minecraft:stripped_crimson_stem": { "protocol_id": 131 }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 129 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 139 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 126 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 136 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 130 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 140 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 123 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 133 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 124 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 134 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 142 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 132 + }, "minecraft:structure_block": { - "protocol_id": 750 + "protocol_id": 754 }, "minecraft:structure_void": { - "protocol_id": 497 + "protocol_id": 499 }, "minecraft:sugar": { - "protocol_id": 918 + "protocol_id": 922 }, "minecraft:sugar_cane": { - "protocol_id": 219 + "protocol_id": 221 }, "minecraft:sunflower": { - "protocol_id": 441 + "protocol_id": 443 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 46 }, "minecraft:suspicious_sand": { "protocol_id": 45 }, "minecraft:suspicious_stew": { - "protocol_id": 1138 + "protocol_id": 1144 }, "minecraft:sweet_berries": { - "protocol_id": 1159 + "protocol_id": 1165 }, "minecraft:tadpole_bucket": { - "protocol_id": 876 + "protocol_id": 880 }, "minecraft:tadpole_spawn_egg": { - "protocol_id": 1022 + "protocol_id": 1026 }, "minecraft:tall_grass": { - "protocol_id": 445 + "protocol_id": 447 }, "minecraft:target": { - "protocol_id": 646 + "protocol_id": 649 }, "minecraft:terracotta": { - "protocol_id": 438 + "protocol_id": 440 }, "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1220 + "protocol_id": 1226 }, "minecraft:tinted_glass": { - "protocol_id": 166 + "protocol_id": 167 }, "minecraft:tipped_arrow": { - "protocol_id": 1109 + "protocol_id": 1114 }, "minecraft:tnt": { - "protocol_id": 653 + "protocol_id": 657 }, "minecraft:tnt_minecart": { - "protocol_id": 727 + "protocol_id": 731 }, "minecraft:torch": { - "protocol_id": 267 + "protocol_id": 269 }, "minecraft:torchflower": { - "protocol_id": 208 + "protocol_id": 209 }, "minecraft:torchflower_seeds": { - "protocol_id": 1102 + "protocol_id": 1106 }, "minecraft:totem_of_undying": { - "protocol_id": 1112 + "protocol_id": 1117 }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1023 + "protocol_id": 1027 }, "minecraft:trapped_chest": { - "protocol_id": 652 + "protocol_id": 656 }, "minecraft:trident": { - "protocol_id": 1133 + "protocol_id": 1139 }, "minecraft:tripwire_hook": { - "protocol_id": 651 + "protocol_id": 655 }, "minecraft:tropical_fish": { - "protocol_id": 893 + "protocol_id": 897 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 874 + "protocol_id": 878 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1024 + "protocol_id": 1028 }, "minecraft:tube_coral": { - "protocol_id": 574 + "protocol_id": 577 }, "minecraft:tube_coral_block": { - "protocol_id": 569 + "protocol_id": 572 }, "minecraft:tube_coral_fan": { - "protocol_id": 584 + "protocol_id": 587 }, "minecraft:tuff": { "protocol_id": 12 }, "minecraft:turtle_egg": { - "protocol_id": 563 + "protocol_id": 565 }, "minecraft:turtle_helmet": { - "protocol_id": 752 + "protocol_id": 756 }, "minecraft:turtle_spawn_egg": { - "protocol_id": 1025 - }, - "minecraft:twisting_vines": { - "protocol_id": 218 - }, - "minecraft:verdant_froglight": { - "protocol_id": 1207 - }, - "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1219 - }, - "minecraft:vex_spawn_egg": { - "protocol_id": 1026 - }, - "minecraft:villager_spawn_egg": { - "protocol_id": 1027 - }, - "minecraft:vindicator_spawn_egg": { - "protocol_id": 1028 - }, - "minecraft:vine": { - "protocol_id": 335 - }, - "minecraft:wandering_trader_spawn_egg": { "protocol_id": 1029 }, - "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1217 + "minecraft:twisting_vines": { + "protocol_id": 220 }, - "minecraft:warden_spawn_egg": { + "minecraft:verdant_froglight": { + "protocol_id": 1213 + }, + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1225 + }, + "minecraft:vex_spawn_egg": { "protocol_id": 1030 }, + "minecraft:villager_spawn_egg": { + "protocol_id": 1031 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1032 + }, + "minecraft:vine": { + "protocol_id": 337 + }, + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1033 + }, + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1223 + }, + "minecraft:warden_spawn_egg": { + "protocol_id": 1034 + }, "minecraft:warped_button": { - "protocol_id": 668 + "protocol_id": 672 }, "minecraft:warped_door": { - "protocol_id": 695 + "protocol_id": 699 }, "minecraft:warped_fence": { - "protocol_id": 297 + "protocol_id": 299 }, "minecraft:warped_fence_gate": { - "protocol_id": 718 + "protocol_id": 722 }, "minecraft:warped_fungus": { - "protocol_id": 213 + "protocol_id": 215 }, "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 730 + "protocol_id": 734 }, "minecraft:warped_hanging_sign": { - "protocol_id": 863 + "protocol_id": 867 }, "minecraft:warped_hyphae": { - "protocol_id": 152 + "protocol_id": 153 }, "minecraft:warped_nylium": { "protocol_id": 21 @@ -8133,303 +8357,309 @@ "protocol_id": 33 }, "minecraft:warped_pressure_plate": { - "protocol_id": 683 + "protocol_id": 687 }, "minecraft:warped_roots": { - "protocol_id": 215 - }, - "minecraft:warped_sign": { - "protocol_id": 852 - }, - "minecraft:warped_slab": { - "protocol_id": 239 - }, - "minecraft:warped_stairs": { - "protocol_id": 370 - }, - "minecraft:warped_stem": { - "protocol_id": 120 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 707 - }, - "minecraft:warped_wart_block": { - "protocol_id": 494 - }, - "minecraft:water_bucket": { - "protocol_id": 865 - }, - "minecraft:waxed_copper_block": { - "protocol_id": 93 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 97 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 105 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 101 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 94 - }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 98 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 106 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 102 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 96 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 100 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 108 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 104 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 95 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 99 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 107 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 103 - }, - "minecraft:weathered_copper": { - "protocol_id": 79 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 83 - }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 91 - }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 87 - }, - "minecraft:weeping_vines": { "protocol_id": 217 }, + "minecraft:warped_sign": { + "protocol_id": 856 + }, + "minecraft:warped_slab": { + "protocol_id": 241 + }, + "minecraft:warped_stairs": { + "protocol_id": 372 + }, + "minecraft:warped_stem": { + "protocol_id": 121 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 711 + }, + "minecraft:warped_wart_block": { + "protocol_id": 496 + }, + "minecraft:water_bucket": { + "protocol_id": 869 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 94 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 98 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 106 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 102 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 95 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 99 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 107 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 103 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 97 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 101 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 109 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 105 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 96 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 100 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 108 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 104 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1230 + }, + "minecraft:weathered_copper": { + "protocol_id": 80 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 84 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 92 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 88 + }, + "minecraft:weeping_vines": { + "protocol_id": 219 + }, "minecraft:wet_sponge": { - "protocol_id": 164 + "protocol_id": 165 }, "minecraft:wheat": { - "protocol_id": 810 + "protocol_id": 814 }, "minecraft:wheat_seeds": { - "protocol_id": 809 + "protocol_id": 813 }, "minecraft:white_banner": { - "protocol_id": 1083 - }, - "minecraft:white_bed": { - "protocol_id": 920 - }, - "minecraft:white_candle": { - "protocol_id": 1185 - }, - "minecraft:white_carpet": { - "protocol_id": 422 - }, - "minecraft:white_concrete": { - "protocol_id": 531 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 547 - }, - "minecraft:white_dye": { - "protocol_id": 900 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 515 - }, - "minecraft:white_shulker_box": { - "protocol_id": 499 - }, - "minecraft:white_stained_glass": { - "protocol_id": 447 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 463 - }, - "minecraft:white_terracotta": { - "protocol_id": 403 - }, - "minecraft:white_tulip": { - "protocol_id": 202 - }, - "minecraft:white_wool": { - "protocol_id": 179 - }, - "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1216 - }, - "minecraft:witch_spawn_egg": { - "protocol_id": 1031 - }, - "minecraft:wither_rose": { - "protocol_id": 207 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 1054 - }, - "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1033 - }, - "minecraft:wither_spawn_egg": { - "protocol_id": 1032 - }, - "minecraft:wolf_spawn_egg": { - "protocol_id": 1034 - }, - "minecraft:wooden_axe": { - "protocol_id": 776 - }, - "minecraft:wooden_hoe": { - "protocol_id": 777 - }, - "minecraft:wooden_pickaxe": { - "protocol_id": 775 - }, - "minecraft:wooden_shovel": { - "protocol_id": 774 - }, - "minecraft:wooden_sword": { - "protocol_id": 773 - }, - "minecraft:writable_book": { - "protocol_id": 1042 - }, - "minecraft:written_book": { - "protocol_id": 1043 - }, - "minecraft:yellow_banner": { "protocol_id": 1087 }, - "minecraft:yellow_bed": { + "minecraft:white_bed": { "protocol_id": 924 }, - "minecraft:yellow_candle": { - "protocol_id": 1189 + "minecraft:white_candle": { + "protocol_id": 1191 }, - "minecraft:yellow_carpet": { - "protocol_id": 426 + "minecraft:white_carpet": { + "protocol_id": 424 }, - "minecraft:yellow_concrete": { - "protocol_id": 535 + "minecraft:white_concrete": { + "protocol_id": 533 }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 551 + "minecraft:white_concrete_powder": { + "protocol_id": 549 }, - "minecraft:yellow_dye": { + "minecraft:white_dye": { "protocol_id": 904 }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 519 + "minecraft:white_glazed_terracotta": { + "protocol_id": 517 }, - "minecraft:yellow_shulker_box": { - "protocol_id": 503 + "minecraft:white_shulker_box": { + "protocol_id": 501 }, - "minecraft:yellow_stained_glass": { - "protocol_id": 451 + "minecraft:white_stained_glass": { + "protocol_id": 449 }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 467 + "minecraft:white_stained_glass_pane": { + "protocol_id": 465 }, - "minecraft:yellow_terracotta": { - "protocol_id": 407 + "minecraft:white_terracotta": { + "protocol_id": 405 }, - "minecraft:yellow_wool": { - "protocol_id": 183 + "minecraft:white_tulip": { + "protocol_id": 203 }, - "minecraft:zoglin_spawn_egg": { + "minecraft:white_wool": { + "protocol_id": 180 + }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1222 + }, + "minecraft:witch_spawn_egg": { "protocol_id": 1035 }, - "minecraft:zombie_head": { - "protocol_id": 1056 + "minecraft:wither_rose": { + "protocol_id": 208 }, - "minecraft:zombie_horse_spawn_egg": { + "minecraft:wither_skeleton_skull": { + "protocol_id": 1058 + }, + "minecraft:wither_skeleton_spawn_egg": { "protocol_id": 1037 }, - "minecraft:zombie_spawn_egg": { + "minecraft:wither_spawn_egg": { "protocol_id": 1036 }, - "minecraft:zombie_villager_spawn_egg": { + "minecraft:wolf_spawn_egg": { "protocol_id": 1038 }, - "minecraft:zombified_piglin_spawn_egg": { + "minecraft:wooden_axe": { + "protocol_id": 780 + }, + "minecraft:wooden_hoe": { + "protocol_id": 781 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 779 + }, + "minecraft:wooden_shovel": { + "protocol_id": 778 + }, + "minecraft:wooden_sword": { + "protocol_id": 777 + }, + "minecraft:writable_book": { + "protocol_id": 1046 + }, + "minecraft:written_book": { + "protocol_id": 1047 + }, + "minecraft:yellow_banner": { + "protocol_id": 1091 + }, + "minecraft:yellow_bed": { + "protocol_id": 928 + }, + "minecraft:yellow_candle": { + "protocol_id": 1195 + }, + "minecraft:yellow_carpet": { + "protocol_id": 428 + }, + "minecraft:yellow_concrete": { + "protocol_id": 537 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 553 + }, + "minecraft:yellow_dye": { + "protocol_id": 908 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 521 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 505 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 453 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 469 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 409 + }, + "minecraft:yellow_wool": { + "protocol_id": 184 + }, + "minecraft:zoglin_spawn_egg": { "protocol_id": 1039 + }, + "minecraft:zombie_head": { + "protocol_id": 1060 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 1041 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 1040 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 1042 + }, + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 1043 } }, "protocol_id": 7 }, "minecraft:loot_condition_type": { "entries": { - "minecraft:alternative": { + "minecraft:all_of": { + "protocol_id": 2 + }, + "minecraft:any_of": { "protocol_id": 1 }, "minecraft:block_state_property": { - "protocol_id": 7 + "protocol_id": 8 }, "minecraft:damage_source_properties": { - "protocol_id": 11 + "protocol_id": 12 }, "minecraft:entity_properties": { - "protocol_id": 4 + "protocol_id": 5 }, "minecraft:entity_scores": { - "protocol_id": 6 + "protocol_id": 7 }, "minecraft:inverted": { "protocol_id": 0 }, "minecraft:killed_by_player": { - "protocol_id": 5 + "protocol_id": 6 }, "minecraft:location_check": { - "protocol_id": 12 + "protocol_id": 13 }, "minecraft:match_tool": { - "protocol_id": 8 - }, - "minecraft:random_chance": { - "protocol_id": 2 - }, - "minecraft:random_chance_with_looting": { - "protocol_id": 3 - }, - "minecraft:reference": { - "protocol_id": 14 - }, - "minecraft:survives_explosion": { - "protocol_id": 10 - }, - "minecraft:table_bonus": { "protocol_id": 9 }, - "minecraft:time_check": { + "minecraft:random_chance": { + "protocol_id": 3 + }, + "minecraft:random_chance_with_looting": { + "protocol_id": 4 + }, + "minecraft:reference": { "protocol_id": 15 }, - "minecraft:value_check": { + "minecraft:survives_explosion": { + "protocol_id": 11 + }, + "minecraft:table_bonus": { + "protocol_id": 10 + }, + "minecraft:time_check": { "protocol_id": 16 }, + "minecraft:value_check": { + "protocol_id": 17 + }, "minecraft:weather_check": { - "protocol_id": 13 + "protocol_id": 14 } }, - "protocol_id": 32 + "protocol_id": 33 }, "minecraft:loot_function_type": { "entries": { @@ -8469,6 +8699,9 @@ "minecraft:looting_enchant": { "protocol_id": 6 }, + "minecraft:reference": { + "protocol_id": 25 + }, "minecraft:set_attributes": { "protocol_id": 8 }, @@ -8509,7 +8742,7 @@ "protocol_id": 11 } }, - "protocol_id": 31 + "protocol_id": 32 }, "minecraft:loot_nbt_provider_type": { "entries": { @@ -8520,7 +8753,7 @@ "protocol_id": 0 } }, - "protocol_id": 34 + "protocol_id": 35 }, "minecraft:loot_number_provider_type": { "entries": { @@ -8537,7 +8770,7 @@ "protocol_id": 1 } }, - "protocol_id": 33 + "protocol_id": 34 }, "minecraft:loot_pool_entry_type": { "entries": { @@ -8566,7 +8799,7 @@ "protocol_id": 4 } }, - "protocol_id": 30 + "protocol_id": 31 }, "minecraft:loot_score_provider_type": { "entries": { @@ -8577,7 +8810,7 @@ "protocol_id": 0 } }, - "protocol_id": 35 + "protocol_id": 36 }, "minecraft:memory_module_type": { "default": "minecraft:dummy", @@ -8874,7 +9107,7 @@ "protocol_id": 12 } }, - "protocol_id": 26 + "protocol_id": 27 }, "minecraft:menu": { "entries": { @@ -8891,7 +9124,7 @@ "protocol_id": 10 }, "minecraft:cartography_table": { - "protocol_id": 23 + "protocol_id": 22 }, "minecraft:crafting": { "protocol_id": 11 @@ -8932,9 +9165,6 @@ "minecraft:lectern": { "protocol_id": 16 }, - "minecraft:legacy_smithing": { - "protocol_id": 20 - }, "minecraft:loom": { "protocol_id": 17 }, @@ -8945,16 +9175,16 @@ "protocol_id": 19 }, "minecraft:smithing": { - "protocol_id": 21 + "protocol_id": 20 }, "minecraft:smoker": { - "protocol_id": 22 + "protocol_id": 21 }, "minecraft:stonecutter": { - "protocol_id": 24 + "protocol_id": 23 } }, - "protocol_id": 16 + "protocol_id": 17 }, "minecraft:mob_effect": { "entries": { @@ -9165,7 +9395,7 @@ "protocol_id": 1 }, "minecraft:ash": { - "protocol_id": 74 + "protocol_id": 72 }, "minecraft:block": { "protocol_id": 2 @@ -9177,58 +9407,58 @@ "protocol_id": 4 }, "minecraft:bubble_column_up": { - "protocol_id": 64 - }, - "minecraft:bubble_pop": { "protocol_id": 62 }, + "minecraft:bubble_pop": { + "protocol_id": 60 + }, "minecraft:campfire_cosy_smoke": { - "protocol_id": 67 + "protocol_id": 65 }, "minecraft:campfire_signal_smoke": { - "protocol_id": 68 + "protocol_id": 66 + }, + "minecraft:cherry_leaves": { + "protocol_id": 29 }, "minecraft:cloud": { "protocol_id": 5 }, "minecraft:composter": { - "protocol_id": 39 + "protocol_id": 37 }, "minecraft:crimson_spore": { - "protocol_id": 75 + "protocol_id": 73 }, "minecraft:crit": { "protocol_id": 6 }, "minecraft:current_down": { - "protocol_id": 63 + "protocol_id": 61 }, "minecraft:damage_indicator": { "protocol_id": 7 }, "minecraft:dolphin": { - "protocol_id": 66 + "protocol_id": 64 }, "minecraft:dragon_breath": { "protocol_id": 8 }, - "minecraft:dripping_cherry_leaves": { - "protocol_id": 29 - }, "minecraft:dripping_dripstone_lava": { - "protocol_id": 85 + "protocol_id": 83 }, "minecraft:dripping_dripstone_water": { - "protocol_id": 87 + "protocol_id": 85 }, "minecraft:dripping_honey": { - "protocol_id": 69 + "protocol_id": 67 }, "minecraft:dripping_lava": { "protocol_id": 9 }, "minecraft:dripping_obsidian_tear": { - "protocol_id": 78 + "protocol_id": 76 }, "minecraft:dripping_water": { "protocol_id": 12 @@ -9242,11 +9472,14 @@ "minecraft:effect": { "protocol_id": 16 }, + "minecraft:egg_crack": { + "protocol_id": 94 + }, "minecraft:elder_guardian": { "protocol_id": 17 }, "minecraft:electric_spark": { - "protocol_id": 93 + "protocol_id": 91 }, "minecraft:enchant": { "protocol_id": 19 @@ -9266,32 +9499,29 @@ "minecraft:explosion_emitter": { "protocol_id": 22 }, - "minecraft:falling_cherry_leaves": { - "protocol_id": 30 - }, "minecraft:falling_dripstone_lava": { - "protocol_id": 86 + "protocol_id": 84 }, "minecraft:falling_dripstone_water": { - "protocol_id": 88 + "protocol_id": 86 }, "minecraft:falling_dust": { "protocol_id": 25 }, "minecraft:falling_honey": { - "protocol_id": 70 + "protocol_id": 68 }, "minecraft:falling_lava": { "protocol_id": 10 }, "minecraft:falling_nectar": { - "protocol_id": 72 + "protocol_id": 70 }, "minecraft:falling_obsidian_tear": { - "protocol_id": 79 + "protocol_id": 77 }, "minecraft:falling_spore_blossom": { - "protocol_id": 73 + "protocol_id": 71 }, "minecraft:falling_water": { "protocol_id": 13 @@ -9306,145 +9536,142 @@ "protocol_id": 28 }, "minecraft:flash": { - "protocol_id": 37 + "protocol_id": 35 }, "minecraft:glow": { - "protocol_id": 90 + "protocol_id": 88 }, "minecraft:glow_squid_ink": { - "protocol_id": 89 + "protocol_id": 87 }, "minecraft:happy_villager": { - "protocol_id": 38 + "protocol_id": 36 }, "minecraft:heart": { - "protocol_id": 40 + "protocol_id": 38 }, "minecraft:instant_effect": { - "protocol_id": 41 + "protocol_id": 39 }, "minecraft:item": { - "protocol_id": 42 + "protocol_id": 40 }, "minecraft:item_slime": { - "protocol_id": 44 + "protocol_id": 42 }, "minecraft:item_snowball": { - "protocol_id": 45 - }, - "minecraft:landing_cherry_leaves": { - "protocol_id": 31 + "protocol_id": 43 }, "minecraft:landing_honey": { - "protocol_id": 71 + "protocol_id": 69 }, "minecraft:landing_lava": { "protocol_id": 11 }, "minecraft:landing_obsidian_tear": { - "protocol_id": 80 + "protocol_id": 78 }, "minecraft:large_smoke": { - "protocol_id": 46 + "protocol_id": 44 }, "minecraft:lava": { - "protocol_id": 47 + "protocol_id": 45 }, "minecraft:mycelium": { - "protocol_id": 48 + "protocol_id": 46 }, "minecraft:nautilus": { - "protocol_id": 65 + "protocol_id": 63 }, "minecraft:note": { - "protocol_id": 49 + "protocol_id": 47 }, "minecraft:poof": { - "protocol_id": 50 + "protocol_id": 48 }, "minecraft:portal": { - "protocol_id": 51 + "protocol_id": 49 }, "minecraft:rain": { - "protocol_id": 52 + "protocol_id": 50 }, "minecraft:reverse_portal": { - "protocol_id": 81 + "protocol_id": 79 }, "minecraft:scrape": { - "protocol_id": 94 + "protocol_id": 92 }, "minecraft:sculk_charge": { - "protocol_id": 33 + "protocol_id": 31 }, "minecraft:sculk_charge_pop": { - "protocol_id": 34 - }, - "minecraft:sculk_soul": { "protocol_id": 32 }, + "minecraft:sculk_soul": { + "protocol_id": 30 + }, "minecraft:shriek": { - "protocol_id": 95 + "protocol_id": 93 }, "minecraft:small_flame": { - "protocol_id": 83 + "protocol_id": 81 }, "minecraft:smoke": { - "protocol_id": 53 + "protocol_id": 51 }, "minecraft:sneeze": { - "protocol_id": 54 + "protocol_id": 52 }, "minecraft:snowflake": { - "protocol_id": 84 + "protocol_id": 82 }, "minecraft:sonic_boom": { "protocol_id": 24 }, "minecraft:soul": { - "protocol_id": 36 + "protocol_id": 34 }, "minecraft:soul_fire_flame": { - "protocol_id": 35 + "protocol_id": 33 }, "minecraft:spit": { - "protocol_id": 55 + "protocol_id": 53 }, "minecraft:splash": { - "protocol_id": 60 - }, - "minecraft:spore_blossom_air": { - "protocol_id": 77 - }, - "minecraft:squid_ink": { - "protocol_id": 56 - }, - "minecraft:sweep_attack": { - "protocol_id": 57 - }, - "minecraft:totem_of_undying": { "protocol_id": 58 }, + "minecraft:spore_blossom_air": { + "protocol_id": 75 + }, + "minecraft:squid_ink": { + "protocol_id": 54 + }, + "minecraft:sweep_attack": { + "protocol_id": 55 + }, + "minecraft:totem_of_undying": { + "protocol_id": 56 + }, "minecraft:underwater": { - "protocol_id": 59 + "protocol_id": 57 }, "minecraft:vibration": { - "protocol_id": 43 + "protocol_id": 41 }, "minecraft:warped_spore": { - "protocol_id": 76 + "protocol_id": 74 }, "minecraft:wax_off": { - "protocol_id": 92 + "protocol_id": 90 }, "minecraft:wax_on": { - "protocol_id": 91 + "protocol_id": 89 }, "minecraft:white_ash": { - "protocol_id": 82 + "protocol_id": 80 }, "minecraft:witch": { - "protocol_id": 61 + "protocol_id": 59 } }, "protocol_id": 9 @@ -9512,7 +9739,7 @@ "protocol_id": 12 } }, - "protocol_id": 25 + "protocol_id": 26 }, "minecraft:pos_rule_test": { "entries": { @@ -9526,7 +9753,7 @@ "protocol_id": 1 } }, - "protocol_id": 15 + "protocol_id": 16 }, "minecraft:position_source_type": { "entries": { @@ -9537,7 +9764,7 @@ "protocol_id": 1 } }, - "protocol_id": 20 + "protocol_id": 21 }, "minecraft:potion": { "default": "minecraft:empty", @@ -9683,7 +9910,7 @@ "protocol_id": 18 }, "minecraft:crafting_decorated_pot": { - "protocol_id": 23 + "protocol_id": 22 }, "minecraft:crafting_shaped": { "protocol_id": 0 @@ -9733,14 +9960,11 @@ "minecraft:smelting": { "protocol_id": 15 }, - "minecraft:smithing": { + "minecraft:smithing_transform": { "protocol_id": 20 }, - "minecraft:smithing_transform": { - "protocol_id": 21 - }, "minecraft:smithing_trim": { - "protocol_id": 22 + "protocol_id": 21 }, "minecraft:smoking": { "protocol_id": 17 @@ -9749,7 +9973,7 @@ "protocol_id": 19 } }, - "protocol_id": 18 + "protocol_id": 19 }, "minecraft:recipe_type": { "entries": { @@ -9775,7 +9999,24 @@ "protocol_id": 5 } }, - "protocol_id": 17 + "protocol_id": 18 + }, + "minecraft:rule_block_entity_modifier": { + "entries": { + "minecraft:append_loot": { + "protocol_id": 3 + }, + "minecraft:append_static": { + "protocol_id": 2 + }, + "minecraft:clear": { + "protocol_id": 0 + }, + "minecraft:passthrough": { + "protocol_id": 1 + } + }, + "protocol_id": 15 }, "minecraft:rule_test": { "entries": { @@ -9815,7 +10056,7 @@ "protocol_id": 3 } }, - "protocol_id": 28 + "protocol_id": 29 }, "minecraft:sensor_type": { "default": "minecraft:dummy", @@ -9877,6 +10118,9 @@ "minecraft:secondary_pois": { "protocol_id": 8 }, + "minecraft:sniffer_temptations": { + "protocol_id": 22 + }, "minecraft:villager_babies": { "protocol_id": 7 }, @@ -9887,7 +10131,7 @@ "protocol_id": 21 } }, - "protocol_id": 27 + "protocol_id": 28 }, "minecraft:sound_event": { "entries": { @@ -9972,1895 +10216,1925 @@ "minecraft:block.amethyst_block.place": { "protocol_id": 33 }, - "minecraft:block.amethyst_block.step": { + "minecraft:block.amethyst_block.resonate": { "protocol_id": 34 }, - "minecraft:block.amethyst_cluster.break": { + "minecraft:block.amethyst_block.step": { "protocol_id": 35 }, - "minecraft:block.amethyst_cluster.fall": { + "minecraft:block.amethyst_cluster.break": { "protocol_id": 36 }, - "minecraft:block.amethyst_cluster.hit": { + "minecraft:block.amethyst_cluster.fall": { "protocol_id": 37 }, - "minecraft:block.amethyst_cluster.place": { + "minecraft:block.amethyst_cluster.hit": { "protocol_id": 38 }, - "minecraft:block.amethyst_cluster.step": { + "minecraft:block.amethyst_cluster.place": { "protocol_id": 39 }, - "minecraft:block.ancient_debris.break": { + "minecraft:block.amethyst_cluster.step": { "protocol_id": 40 }, - "minecraft:block.ancient_debris.fall": { - "protocol_id": 44 - }, - "minecraft:block.ancient_debris.hit": { - "protocol_id": 43 - }, - "minecraft:block.ancient_debris.place": { - "protocol_id": 42 - }, - "minecraft:block.ancient_debris.step": { + "minecraft:block.ancient_debris.break": { "protocol_id": 41 }, - "minecraft:block.anvil.break": { + "minecraft:block.ancient_debris.fall": { "protocol_id": 45 }, - "minecraft:block.anvil.destroy": { + "minecraft:block.ancient_debris.hit": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 42 + }, + "minecraft:block.anvil.break": { "protocol_id": 46 }, - "minecraft:block.anvil.fall": { + "minecraft:block.anvil.destroy": { "protocol_id": 47 }, - "minecraft:block.anvil.hit": { + "minecraft:block.anvil.fall": { "protocol_id": 48 }, - "minecraft:block.anvil.land": { + "minecraft:block.anvil.hit": { "protocol_id": 49 }, - "minecraft:block.anvil.place": { + "minecraft:block.anvil.land": { "protocol_id": 50 }, - "minecraft:block.anvil.step": { + "minecraft:block.anvil.place": { "protocol_id": 51 }, - "minecraft:block.anvil.use": { + "minecraft:block.anvil.step": { "protocol_id": 52 }, - "minecraft:block.azalea.break": { - "protocol_id": 79 + "minecraft:block.anvil.use": { + "protocol_id": 53 }, - "minecraft:block.azalea.fall": { + "minecraft:block.azalea.break": { "protocol_id": 80 }, - "minecraft:block.azalea.hit": { + "minecraft:block.azalea.fall": { "protocol_id": 81 }, - "minecraft:block.azalea.place": { + "minecraft:block.azalea.hit": { "protocol_id": 82 }, - "minecraft:block.azalea.step": { + "minecraft:block.azalea.place": { "protocol_id": 83 }, - "minecraft:block.azalea_leaves.break": { + "minecraft:block.azalea.step": { "protocol_id": 84 }, - "minecraft:block.azalea_leaves.fall": { + "minecraft:block.azalea_leaves.break": { "protocol_id": 85 }, - "minecraft:block.azalea_leaves.hit": { + "minecraft:block.azalea_leaves.fall": { "protocol_id": 86 }, - "minecraft:block.azalea_leaves.place": { + "minecraft:block.azalea_leaves.hit": { "protocol_id": 87 }, - "minecraft:block.azalea_leaves.step": { + "minecraft:block.azalea_leaves.place": { "protocol_id": 88 }, - "minecraft:block.bamboo.break": { + "minecraft:block.azalea_leaves.step": { "protocol_id": 89 }, - "minecraft:block.bamboo.fall": { + "minecraft:block.bamboo.break": { "protocol_id": 90 }, - "minecraft:block.bamboo.hit": { + "minecraft:block.bamboo.fall": { "protocol_id": 91 }, - "minecraft:block.bamboo.place": { + "minecraft:block.bamboo.hit": { "protocol_id": 92 }, - "minecraft:block.bamboo.step": { + "minecraft:block.bamboo.place": { "protocol_id": 93 }, - "minecraft:block.bamboo_sapling.break": { + "minecraft:block.bamboo.step": { "protocol_id": 94 }, - "minecraft:block.bamboo_sapling.hit": { + "minecraft:block.bamboo_sapling.break": { "protocol_id": 95 }, - "minecraft:block.bamboo_sapling.place": { + "minecraft:block.bamboo_sapling.hit": { "protocol_id": 96 }, - "minecraft:block.bamboo_wood.break": { + "minecraft:block.bamboo_sapling.place": { "protocol_id": 97 }, - "minecraft:block.bamboo_wood.fall": { + "minecraft:block.bamboo_wood.break": { "protocol_id": 98 }, - "minecraft:block.bamboo_wood.hit": { + "minecraft:block.bamboo_wood.fall": { "protocol_id": 99 }, - "minecraft:block.bamboo_wood.place": { + "minecraft:block.bamboo_wood.hit": { "protocol_id": 100 }, - "minecraft:block.bamboo_wood.step": { + "minecraft:block.bamboo_wood.place": { "protocol_id": 101 }, - "minecraft:block.bamboo_wood_button.click_off": { - "protocol_id": 106 - }, - "minecraft:block.bamboo_wood_button.click_on": { - "protocol_id": 107 - }, - "minecraft:block.bamboo_wood_door.close": { + "minecraft:block.bamboo_wood.step": { "protocol_id": 102 }, - "minecraft:block.bamboo_wood_door.open": { - "protocol_id": 103 + "minecraft:block.bamboo_wood_button.click_off": { + "protocol_id": 107 }, - "minecraft:block.bamboo_wood_fence_gate.close": { - "protocol_id": 110 - }, - "minecraft:block.bamboo_wood_fence_gate.open": { - "protocol_id": 111 - }, - "minecraft:block.bamboo_wood_hanging_sign.break": { - "protocol_id": 596 - }, - "minecraft:block.bamboo_wood_hanging_sign.fall": { - "protocol_id": 597 - }, - "minecraft:block.bamboo_wood_hanging_sign.hit": { - "protocol_id": 598 - }, - "minecraft:block.bamboo_wood_hanging_sign.place": { - "protocol_id": 599 - }, - "minecraft:block.bamboo_wood_hanging_sign.step": { - "protocol_id": 595 - }, - "minecraft:block.bamboo_wood_pressure_plate.click_off": { + "minecraft:block.bamboo_wood_button.click_on": { "protocol_id": 108 }, - "minecraft:block.bamboo_wood_pressure_plate.click_on": { - "protocol_id": 109 + "minecraft:block.bamboo_wood_door.close": { + "protocol_id": 103 }, - "minecraft:block.bamboo_wood_trapdoor.close": { + "minecraft:block.bamboo_wood_door.open": { "protocol_id": 104 }, - "minecraft:block.bamboo_wood_trapdoor.open": { - "protocol_id": 105 + "minecraft:block.bamboo_wood_fence_gate.close": { + "protocol_id": 111 }, - "minecraft:block.barrel.close": { + "minecraft:block.bamboo_wood_fence_gate.open": { "protocol_id": 112 }, - "minecraft:block.barrel.open": { + "minecraft:block.bamboo_wood_hanging_sign.break": { + "protocol_id": 605 + }, + "minecraft:block.bamboo_wood_hanging_sign.fall": { + "protocol_id": 606 + }, + "minecraft:block.bamboo_wood_hanging_sign.hit": { + "protocol_id": 607 + }, + "minecraft:block.bamboo_wood_hanging_sign.place": { + "protocol_id": 608 + }, + "minecraft:block.bamboo_wood_hanging_sign.step": { + "protocol_id": 604 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_off": { + "protocol_id": 109 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_on": { + "protocol_id": 110 + }, + "minecraft:block.bamboo_wood_trapdoor.close": { + "protocol_id": 105 + }, + "minecraft:block.bamboo_wood_trapdoor.open": { + "protocol_id": 106 + }, + "minecraft:block.barrel.close": { "protocol_id": 113 }, - "minecraft:block.basalt.break": { + "minecraft:block.barrel.open": { "protocol_id": 114 }, - "minecraft:block.basalt.fall": { - "protocol_id": 118 - }, - "minecraft:block.basalt.hit": { - "protocol_id": 117 - }, - "minecraft:block.basalt.place": { - "protocol_id": 116 - }, - "minecraft:block.basalt.step": { + "minecraft:block.basalt.break": { "protocol_id": 115 }, - "minecraft:block.beacon.activate": { - "protocol_id": 124 + "minecraft:block.basalt.fall": { + "protocol_id": 119 }, - "minecraft:block.beacon.ambient": { + "minecraft:block.basalt.hit": { + "protocol_id": 118 + }, + "minecraft:block.basalt.place": { + "protocol_id": 117 + }, + "minecraft:block.basalt.step": { + "protocol_id": 116 + }, + "minecraft:block.beacon.activate": { "protocol_id": 125 }, - "minecraft:block.beacon.deactivate": { + "minecraft:block.beacon.ambient": { "protocol_id": 126 }, - "minecraft:block.beacon.power_select": { + "minecraft:block.beacon.deactivate": { "protocol_id": 127 }, - "minecraft:block.beehive.drip": { - "protocol_id": 134 + "minecraft:block.beacon.power_select": { + "protocol_id": 128 }, - "minecraft:block.beehive.enter": { + "minecraft:block.beehive.drip": { "protocol_id": 135 }, - "minecraft:block.beehive.exit": { + "minecraft:block.beehive.enter": { "protocol_id": 136 }, - "minecraft:block.beehive.shear": { + "minecraft:block.beehive.exit": { "protocol_id": 137 }, - "minecraft:block.beehive.work": { + "minecraft:block.beehive.shear": { "protocol_id": 138 }, - "minecraft:block.bell.resonate": { - "protocol_id": 140 - }, - "minecraft:block.bell.use": { + "minecraft:block.beehive.work": { "protocol_id": 139 }, - "minecraft:block.big_dripleaf.break": { + "minecraft:block.bell.resonate": { "protocol_id": 141 }, - "minecraft:block.big_dripleaf.fall": { + "minecraft:block.bell.use": { + "protocol_id": 140 + }, + "minecraft:block.big_dripleaf.break": { "protocol_id": 142 }, - "minecraft:block.big_dripleaf.hit": { + "minecraft:block.big_dripleaf.fall": { "protocol_id": 143 }, - "minecraft:block.big_dripleaf.place": { + "minecraft:block.big_dripleaf.hit": { "protocol_id": 144 }, - "minecraft:block.big_dripleaf.step": { + "minecraft:block.big_dripleaf.place": { "protocol_id": 145 }, + "minecraft:block.big_dripleaf.step": { + "protocol_id": 146 + }, "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 380 + "protocol_id": 384 }, "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 381 + "protocol_id": 385 }, "minecraft:block.blastfurnace.fire_crackle": { - "protocol_id": 161 + "protocol_id": 162 }, "minecraft:block.bone_block.break": { - "protocol_id": 153 - }, - "minecraft:block.bone_block.fall": { "protocol_id": 154 }, - "minecraft:block.bone_block.hit": { + "minecraft:block.bone_block.fall": { "protocol_id": 155 }, - "minecraft:block.bone_block.place": { + "minecraft:block.bone_block.hit": { "protocol_id": 156 }, - "minecraft:block.bone_block.step": { + "minecraft:block.bone_block.place": { "protocol_id": 157 }, + "minecraft:block.bone_block.step": { + "protocol_id": 158 + }, "minecraft:block.brewing_stand.brew": { - "protocol_id": 165 + "protocol_id": 166 }, "minecraft:block.bubble_column.bubble_pop": { - "protocol_id": 168 - }, - "minecraft:block.bubble_column.upwards_ambient": { - "protocol_id": 169 - }, - "minecraft:block.bubble_column.upwards_inside": { - "protocol_id": 170 - }, - "minecraft:block.bubble_column.whirlpool_ambient": { - "protocol_id": 171 - }, - "minecraft:block.bubble_column.whirlpool_inside": { "protocol_id": 172 }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 173 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 174 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 175 + }, + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 176 + }, "minecraft:block.cake.add_candle": { - "protocol_id": 188 - }, - "minecraft:block.calcite.break": { - "protocol_id": 189 - }, - "minecraft:block.calcite.fall": { - "protocol_id": 193 - }, - "minecraft:block.calcite.hit": { "protocol_id": 192 }, + "minecraft:block.calcite.break": { + "protocol_id": 193 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 197 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 196 + }, "minecraft:block.calcite.place": { - "protocol_id": 191 + "protocol_id": 195 }, "minecraft:block.calcite.step": { - "protocol_id": 190 + "protocol_id": 194 }, "minecraft:block.campfire.crackle": { - "protocol_id": 205 - }, - "minecraft:block.candle.ambient": { - "protocol_id": 206 - }, - "minecraft:block.candle.break": { - "protocol_id": 207 - }, - "minecraft:block.candle.extinguish": { - "protocol_id": 208 - }, - "minecraft:block.candle.fall": { "protocol_id": 209 }, - "minecraft:block.candle.hit": { + "minecraft:block.candle.ambient": { "protocol_id": 210 }, - "minecraft:block.candle.place": { + "minecraft:block.candle.break": { "protocol_id": 211 }, - "minecraft:block.candle.step": { + "minecraft:block.candle.extinguish": { "protocol_id": 212 }, + "minecraft:block.candle.fall": { + "protocol_id": 213 + }, + "minecraft:block.candle.hit": { + "protocol_id": 214 + }, + "minecraft:block.candle.place": { + "protocol_id": 215 + }, + "minecraft:block.candle.step": { + "protocol_id": 216 + }, "minecraft:block.cave_vines.break": { - "protocol_id": 222 - }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 223 - }, - "minecraft:block.cave_vines.hit": { - "protocol_id": 224 - }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 227 - }, - "minecraft:block.cave_vines.place": { - "protocol_id": 225 - }, - "minecraft:block.cave_vines.step": { "protocol_id": 226 }, - "minecraft:block.chain.break": { + "minecraft:block.cave_vines.fall": { + "protocol_id": 227 + }, + "minecraft:block.cave_vines.hit": { "protocol_id": 228 }, - "minecraft:block.chain.fall": { - "protocol_id": 229 - }, - "minecraft:block.chain.hit": { - "protocol_id": 230 - }, - "minecraft:block.chain.place": { + "minecraft:block.cave_vines.pick_berries": { "protocol_id": 231 }, - "minecraft:block.chain.step": { + "minecraft:block.cave_vines.place": { + "protocol_id": 229 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 230 + }, + "minecraft:block.chain.break": { "protocol_id": 232 }, - "minecraft:block.cherry_leaves.break": { - "protocol_id": 243 - }, - "minecraft:block.cherry_leaves.fall": { - "protocol_id": 244 - }, - "minecraft:block.cherry_leaves.hit": { - "protocol_id": 245 - }, - "minecraft:block.cherry_leaves.place": { - "protocol_id": 246 - }, - "minecraft:block.cherry_leaves.step": { - "protocol_id": 247 - }, - "minecraft:block.cherry_sapling.break": { - "protocol_id": 238 - }, - "minecraft:block.cherry_sapling.fall": { - "protocol_id": 239 - }, - "minecraft:block.cherry_sapling.hit": { - "protocol_id": 240 - }, - "minecraft:block.cherry_sapling.place": { - "protocol_id": 241 - }, - "minecraft:block.cherry_sapling.step": { - "protocol_id": 242 - }, - "minecraft:block.cherry_wood.break": { + "minecraft:block.chain.fall": { "protocol_id": 233 }, - "minecraft:block.cherry_wood.fall": { + "minecraft:block.chain.hit": { "protocol_id": 234 }, - "minecraft:block.cherry_wood.hit": { + "minecraft:block.chain.place": { "protocol_id": 235 }, - "minecraft:block.cherry_wood.place": { + "minecraft:block.chain.step": { "protocol_id": 236 }, - "minecraft:block.cherry_wood.step": { - "protocol_id": 237 + "minecraft:block.cherry_leaves.break": { + "protocol_id": 247 }, - "minecraft:block.cherry_wood_button.click_off": { - "protocol_id": 257 - }, - "minecraft:block.cherry_wood_button.click_on": { - "protocol_id": 258 - }, - "minecraft:block.cherry_wood_door.close": { - "protocol_id": 253 - }, - "minecraft:block.cherry_wood_door.open": { - "protocol_id": 254 - }, - "minecraft:block.cherry_wood_fence_gate.close": { - "protocol_id": 261 - }, - "minecraft:block.cherry_wood_fence_gate.open": { - "protocol_id": 262 - }, - "minecraft:block.cherry_wood_hanging_sign.break": { - "protocol_id": 249 - }, - "minecraft:block.cherry_wood_hanging_sign.fall": { - "protocol_id": 250 - }, - "minecraft:block.cherry_wood_hanging_sign.hit": { - "protocol_id": 251 - }, - "minecraft:block.cherry_wood_hanging_sign.place": { - "protocol_id": 252 - }, - "minecraft:block.cherry_wood_hanging_sign.step": { + "minecraft:block.cherry_leaves.fall": { "protocol_id": 248 }, - "minecraft:block.cherry_wood_pressure_plate.click_off": { - "protocol_id": 259 + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 249 }, - "minecraft:block.cherry_wood_pressure_plate.click_on": { - "protocol_id": 260 + "minecraft:block.cherry_leaves.place": { + "protocol_id": 250 }, - "minecraft:block.cherry_wood_trapdoor.close": { - "protocol_id": 255 + "minecraft:block.cherry_leaves.step": { + "protocol_id": 251 }, - "minecraft:block.cherry_wood_trapdoor.open": { - "protocol_id": 256 + "minecraft:block.cherry_sapling.break": { + "protocol_id": 242 }, - "minecraft:block.chest.close": { - "protocol_id": 263 + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 243 }, - "minecraft:block.chest.locked": { - "protocol_id": 264 + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 244 }, - "minecraft:block.chest.open": { + "minecraft:block.cherry_sapling.place": { + "protocol_id": 245 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 246 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 237 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 238 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 239 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 240 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 241 + }, + "minecraft:block.cherry_wood_button.click_off": { + "protocol_id": 261 + }, + "minecraft:block.cherry_wood_button.click_on": { + "protocol_id": 262 + }, + "minecraft:block.cherry_wood_door.close": { + "protocol_id": 257 + }, + "minecraft:block.cherry_wood_door.open": { + "protocol_id": 258 + }, + "minecraft:block.cherry_wood_fence_gate.close": { "protocol_id": 265 }, + "minecraft:block.cherry_wood_fence_gate.open": { + "protocol_id": 266 + }, + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 253 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 254 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 255 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 256 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 252 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 263 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 264 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 259 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 260 + }, + "minecraft:block.chest.close": { + "protocol_id": 267 + }, + "minecraft:block.chest.locked": { + "protocol_id": 268 + }, + "minecraft:block.chest.open": { + "protocol_id": 269 + }, "minecraft:block.chiseled_bookshelf.break": { - "protocol_id": 271 - }, - "minecraft:block.chiseled_bookshelf.fall": { - "protocol_id": 272 - }, - "minecraft:block.chiseled_bookshelf.hit": { - "protocol_id": 273 - }, - "minecraft:block.chiseled_bookshelf.insert": { - "protocol_id": 274 - }, - "minecraft:block.chiseled_bookshelf.insert.enchanted": { "protocol_id": 275 }, - "minecraft:block.chiseled_bookshelf.pickup": { - "protocol_id": 277 - }, - "minecraft:block.chiseled_bookshelf.pickup.enchanted": { - "protocol_id": 278 - }, - "minecraft:block.chiseled_bookshelf.place": { - "protocol_id": 279 - }, - "minecraft:block.chiseled_bookshelf.step": { + "minecraft:block.chiseled_bookshelf.fall": { "protocol_id": 276 }, - "minecraft:block.chorus_flower.death": { - "protocol_id": 280 + "minecraft:block.chiseled_bookshelf.hit": { + "protocol_id": 277 }, - "minecraft:block.chorus_flower.grow": { + "minecraft:block.chiseled_bookshelf.insert": { + "protocol_id": 278 + }, + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 279 + }, + "minecraft:block.chiseled_bookshelf.pickup": { "protocol_id": 281 }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { + "protocol_id": 282 + }, + "minecraft:block.chiseled_bookshelf.place": { + "protocol_id": 283 + }, + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 280 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 284 + }, + "minecraft:block.chorus_flower.grow": { + "protocol_id": 285 + }, "minecraft:block.comparator.click": { - "protocol_id": 287 - }, - "minecraft:block.composter.empty": { - "protocol_id": 288 - }, - "minecraft:block.composter.fill": { - "protocol_id": 289 - }, - "minecraft:block.composter.fill_success": { - "protocol_id": 290 - }, - "minecraft:block.composter.ready": { "protocol_id": 291 }, - "minecraft:block.conduit.activate": { + "minecraft:block.composter.empty": { "protocol_id": 292 }, - "minecraft:block.conduit.ambient": { + "minecraft:block.composter.fill": { "protocol_id": 293 }, - "minecraft:block.conduit.ambient.short": { + "minecraft:block.composter.fill_success": { "protocol_id": 294 }, - "minecraft:block.conduit.attack.target": { + "minecraft:block.composter.ready": { "protocol_id": 295 }, - "minecraft:block.conduit.deactivate": { + "minecraft:block.conduit.activate": { "protocol_id": 296 }, - "minecraft:block.copper.break": { + "minecraft:block.conduit.ambient": { "protocol_id": 297 }, - "minecraft:block.copper.fall": { - "protocol_id": 301 - }, - "minecraft:block.copper.hit": { - "protocol_id": 300 - }, - "minecraft:block.copper.place": { - "protocol_id": 299 - }, - "minecraft:block.copper.step": { + "minecraft:block.conduit.ambient.short": { "protocol_id": 298 }, - "minecraft:block.coral_block.break": { - "protocol_id": 302 + "minecraft:block.conduit.attack.target": { + "protocol_id": 299 }, - "minecraft:block.coral_block.fall": { - "protocol_id": 303 + "minecraft:block.conduit.deactivate": { + "protocol_id": 300 }, - "minecraft:block.coral_block.hit": { - "protocol_id": 304 + "minecraft:block.copper.break": { + "protocol_id": 301 }, - "minecraft:block.coral_block.place": { + "minecraft:block.copper.fall": { "protocol_id": 305 }, - "minecraft:block.coral_block.step": { + "minecraft:block.copper.hit": { + "protocol_id": 304 + }, + "minecraft:block.copper.place": { + "protocol_id": 303 + }, + "minecraft:block.copper.step": { + "protocol_id": 302 + }, + "minecraft:block.coral_block.break": { "protocol_id": 306 }, + "minecraft:block.coral_block.fall": { + "protocol_id": 307 + }, + "minecraft:block.coral_block.hit": { + "protocol_id": 308 + }, + "minecraft:block.coral_block.place": { + "protocol_id": 309 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 310 + }, "minecraft:block.crop.break": { - "protocol_id": 315 + "protocol_id": 319 }, "minecraft:block.decorated_pot.break": { - "protocol_id": 325 - }, - "minecraft:block.decorated_pot.fall": { - "protocol_id": 326 - }, - "minecraft:block.decorated_pot.hit": { - "protocol_id": 327 - }, - "minecraft:block.decorated_pot.place": { "protocol_id": 329 }, - "minecraft:block.decorated_pot.shatter": { + "minecraft:block.decorated_pot.fall": { "protocol_id": 330 }, - "minecraft:block.decorated_pot.step": { - "protocol_id": 328 - }, - "minecraft:block.deepslate.break": { - "protocol_id": 336 - }, - "minecraft:block.deepslate.fall": { - "protocol_id": 337 - }, - "minecraft:block.deepslate.hit": { - "protocol_id": 338 - }, - "minecraft:block.deepslate.place": { - "protocol_id": 339 - }, - "minecraft:block.deepslate.step": { - "protocol_id": 340 - }, - "minecraft:block.deepslate_bricks.break": { + "minecraft:block.decorated_pot.hit": { "protocol_id": 331 }, - "minecraft:block.deepslate_bricks.fall": { - "protocol_id": 332 - }, - "minecraft:block.deepslate_bricks.hit": { + "minecraft:block.decorated_pot.place": { "protocol_id": 333 }, - "minecraft:block.deepslate_bricks.place": { + "minecraft:block.decorated_pot.shatter": { "protocol_id": 334 }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 335 + "minecraft:block.decorated_pot.step": { + "protocol_id": 332 }, - "minecraft:block.deepslate_tiles.break": { + "minecraft:block.deepslate.break": { + "protocol_id": 340 + }, + "minecraft:block.deepslate.fall": { "protocol_id": 341 }, - "minecraft:block.deepslate_tiles.fall": { + "minecraft:block.deepslate.hit": { "protocol_id": 342 }, - "minecraft:block.deepslate_tiles.hit": { + "minecraft:block.deepslate.place": { "protocol_id": 343 }, - "minecraft:block.deepslate_tiles.place": { + "minecraft:block.deepslate.step": { "protocol_id": 344 }, - "minecraft:block.deepslate_tiles.step": { + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 335 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 336 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 337 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 338 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 339 + }, + "minecraft:block.deepslate_tiles.break": { "protocol_id": 345 }, - "minecraft:block.dispenser.dispense": { + "minecraft:block.deepslate_tiles.fall": { "protocol_id": 346 }, - "minecraft:block.dispenser.fail": { + "minecraft:block.deepslate_tiles.hit": { "protocol_id": 347 }, - "minecraft:block.dispenser.launch": { + "minecraft:block.deepslate_tiles.place": { "protocol_id": 348 }, - "minecraft:block.dripstone_block.break": { - "protocol_id": 365 + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 349 }, - "minecraft:block.dripstone_block.fall": { + "minecraft:block.dispenser.dispense": { + "protocol_id": 350 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 351 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 352 + }, + "minecraft:block.dripstone_block.break": { "protocol_id": 369 }, - "minecraft:block.dripstone_block.hit": { - "protocol_id": 368 - }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 367 - }, - "minecraft:block.dripstone_block.step": { - "protocol_id": 366 - }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 402 - }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 425 - }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 427 - }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 426 - }, - "minecraft:block.ender_chest.close": { - "protocol_id": 403 - }, - "minecraft:block.ender_chest.open": { - "protocol_id": 404 - }, - "minecraft:block.fence_gate.close": { - "protocol_id": 439 - }, - "minecraft:block.fence_gate.open": { - "protocol_id": 440 - }, - "minecraft:block.fire.ambient": { - "protocol_id": 450 - }, - "minecraft:block.fire.extinguish": { - "protocol_id": 451 - }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 457 - }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 458 - }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 459 - }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 460 - }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 461 - }, - "minecraft:block.froglight.break": { - "protocol_id": 478 - }, - "minecraft:block.froglight.fall": { - "protocol_id": 479 - }, - "minecraft:block.froglight.hit": { - "protocol_id": 480 - }, - "minecraft:block.froglight.place": { - "protocol_id": 481 - }, - "minecraft:block.froglight.step": { - "protocol_id": 482 - }, - "minecraft:block.frogspawn.break": { - "protocol_id": 484 - }, - "minecraft:block.frogspawn.fall": { - "protocol_id": 485 - }, - "minecraft:block.frogspawn.hatch": { - "protocol_id": 486 - }, - "minecraft:block.frogspawn.hit": { - "protocol_id": 487 - }, - "minecraft:block.frogspawn.place": { - "protocol_id": 488 - }, - "minecraft:block.frogspawn.step": { - "protocol_id": 483 - }, - "minecraft:block.fungus.break": { - "protocol_id": 858 - }, - "minecraft:block.fungus.fall": { - "protocol_id": 862 - }, - "minecraft:block.fungus.hit": { - "protocol_id": 861 - }, - "minecraft:block.fungus.place": { - "protocol_id": 860 - }, - "minecraft:block.fungus.step": { - "protocol_id": 859 - }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 502 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 520 - }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 521 - }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 522 - }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 523 - }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 524 - }, - "minecraft:block.glass.break": { - "protocol_id": 525 - }, - "minecraft:block.glass.fall": { - "protocol_id": 526 - }, - "minecraft:block.glass.hit": { - "protocol_id": 527 - }, - "minecraft:block.glass.place": { - "protocol_id": 528 - }, - "minecraft:block.glass.step": { - "protocol_id": 529 - }, - "minecraft:block.grass.break": { - "protocol_id": 560 - }, - "minecraft:block.grass.fall": { - "protocol_id": 561 - }, - "minecraft:block.grass.hit": { - "protocol_id": 562 - }, - "minecraft:block.grass.place": { - "protocol_id": 563 - }, - "minecraft:block.grass.step": { - "protocol_id": 564 - }, - "minecraft:block.gravel.break": { - "protocol_id": 565 - }, - "minecraft:block.gravel.fall": { - "protocol_id": 566 - }, - "minecraft:block.gravel.hit": { - "protocol_id": 567 - }, - "minecraft:block.gravel.place": { - "protocol_id": 568 - }, - "minecraft:block.gravel.step": { - "protocol_id": 569 - }, - "minecraft:block.grindstone.use": { - "protocol_id": 570 - }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 571 - }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 580 - }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 581 - }, - "minecraft:block.hanging_roots.hit": { - "protocol_id": 582 - }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 583 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 584 - }, - "minecraft:block.hanging_sign.break": { - "protocol_id": 586 - }, - "minecraft:block.hanging_sign.fall": { - "protocol_id": 587 - }, - "minecraft:block.hanging_sign.hit": { - "protocol_id": 588 - }, - "minecraft:block.hanging_sign.place": { - "protocol_id": 589 - }, - "minecraft:block.hanging_sign.step": { - "protocol_id": 585 - }, - "minecraft:block.honey_block.break": { - "protocol_id": 609 - }, - "minecraft:block.honey_block.fall": { - "protocol_id": 610 - }, - "minecraft:block.honey_block.hit": { - "protocol_id": 611 - }, - "minecraft:block.honey_block.place": { - "protocol_id": 612 - }, - "minecraft:block.honey_block.slide": { - "protocol_id": 613 - }, - "minecraft:block.honey_block.step": { - "protocol_id": 614 - }, - "minecraft:block.iron_door.close": { - "protocol_id": 657 - }, - "minecraft:block.iron_door.open": { - "protocol_id": 658 - }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 665 - }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 666 - }, - "minecraft:block.ladder.break": { - "protocol_id": 674 - }, - "minecraft:block.ladder.fall": { - "protocol_id": 675 - }, - "minecraft:block.ladder.hit": { - "protocol_id": 676 - }, - "minecraft:block.ladder.place": { - "protocol_id": 677 - }, - "minecraft:block.ladder.step": { - "protocol_id": 678 - }, - "minecraft:block.lantern.break": { - "protocol_id": 679 - }, - "minecraft:block.lantern.fall": { - "protocol_id": 680 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 681 - }, - "minecraft:block.lantern.place": { - "protocol_id": 682 - }, - "minecraft:block.lantern.step": { - "protocol_id": 683 - }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 684 - }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 685 - }, - "minecraft:block.lava.ambient": { - "protocol_id": 686 - }, - "minecraft:block.lava.extinguish": { - "protocol_id": 687 - }, - "minecraft:block.lava.pop": { - "protocol_id": 688 - }, - "minecraft:block.lever.click": { - "protocol_id": 691 - }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1343 - }, - "minecraft:block.lodestone.break": { - "protocol_id": 705 - }, - "minecraft:block.lodestone.fall": { - "protocol_id": 709 - }, - "minecraft:block.lodestone.hit": { - "protocol_id": 708 - }, - "minecraft:block.lodestone.place": { - "protocol_id": 707 - }, - "minecraft:block.lodestone.step": { - "protocol_id": 706 - }, - "minecraft:block.mangrove_roots.break": { - "protocol_id": 717 - }, - "minecraft:block.mangrove_roots.fall": { - "protocol_id": 718 - }, - "minecraft:block.mangrove_roots.hit": { - "protocol_id": 719 - }, - "minecraft:block.mangrove_roots.place": { - "protocol_id": 720 - }, - "minecraft:block.mangrove_roots.step": { - "protocol_id": 721 - }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 722 - }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 723 - }, - "minecraft:block.metal.break": { - "protocol_id": 724 - }, - "minecraft:block.metal.fall": { - "protocol_id": 725 - }, - "minecraft:block.metal.hit": { - "protocol_id": 726 - }, - "minecraft:block.metal.place": { - "protocol_id": 727 - }, - "minecraft:block.metal.step": { - "protocol_id": 730 - }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 728 - }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 729 - }, - "minecraft:block.moss.break": { - "protocol_id": 749 - }, - "minecraft:block.moss.fall": { - "protocol_id": 750 - }, - "minecraft:block.moss.hit": { - "protocol_id": 751 - }, - "minecraft:block.moss.place": { - "protocol_id": 752 - }, - "minecraft:block.moss.step": { - "protocol_id": 753 - }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 739 - }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 740 - }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 741 - }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 742 - }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 743 - }, - "minecraft:block.mud.break": { - "protocol_id": 754 - }, - "minecraft:block.mud.fall": { - "protocol_id": 755 - }, - "minecraft:block.mud.hit": { - "protocol_id": 756 - }, - "minecraft:block.mud.place": { - "protocol_id": 757 - }, - "minecraft:block.mud.step": { - "protocol_id": 758 - }, - "minecraft:block.mud_bricks.break": { - "protocol_id": 759 - }, - "minecraft:block.mud_bricks.fall": { - "protocol_id": 760 - }, - "minecraft:block.mud_bricks.hit": { - "protocol_id": 761 - }, - "minecraft:block.mud_bricks.place": { - "protocol_id": 762 - }, - "minecraft:block.mud_bricks.step": { - "protocol_id": 763 - }, - "minecraft:block.muddy_mangrove_roots.break": { - "protocol_id": 764 - }, - "minecraft:block.muddy_mangrove_roots.fall": { - "protocol_id": 765 - }, - "minecraft:block.muddy_mangrove_roots.hit": { - "protocol_id": 766 - }, - "minecraft:block.muddy_mangrove_roots.place": { - "protocol_id": 767 - }, - "minecraft:block.muddy_mangrove_roots.step": { - "protocol_id": 768 - }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 815 - }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 819 - }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 818 - }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 817 - }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 816 - }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 1054 - }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 1055 - }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 1056 - }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 1057 - }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 1058 - }, - "minecraft:block.nether_ore.break": { - "protocol_id": 1059 - }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 1060 - }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 1061 - }, - "minecraft:block.nether_ore.place": { - "protocol_id": 1062 - }, - "minecraft:block.nether_ore.step": { - "protocol_id": 1063 - }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 853 - }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 857 - }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 856 - }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 855 - }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 854 - }, - "minecraft:block.nether_wart.break": { - "protocol_id": 820 - }, - "minecraft:block.nether_wood.break": { - "protocol_id": 822 - }, - "minecraft:block.nether_wood.fall": { - "protocol_id": 823 - }, - "minecraft:block.nether_wood.hit": { - "protocol_id": 824 - }, - "minecraft:block.nether_wood.place": { - "protocol_id": 825 - }, - "minecraft:block.nether_wood.step": { - "protocol_id": 826 - }, - "minecraft:block.nether_wood_button.click_off": { - "protocol_id": 831 - }, - "minecraft:block.nether_wood_button.click_on": { - "protocol_id": 832 - }, - "minecraft:block.nether_wood_door.close": { - "protocol_id": 827 - }, - "minecraft:block.nether_wood_door.open": { - "protocol_id": 828 - }, - "minecraft:block.nether_wood_fence_gate.close": { - "protocol_id": 835 - }, - "minecraft:block.nether_wood_fence_gate.open": { - "protocol_id": 836 - }, - "minecraft:block.nether_wood_hanging_sign.break": { - "protocol_id": 591 - }, - "minecraft:block.nether_wood_hanging_sign.fall": { - "protocol_id": 592 - }, - "minecraft:block.nether_wood_hanging_sign.hit": { - "protocol_id": 593 - }, - "minecraft:block.nether_wood_hanging_sign.place": { - "protocol_id": 594 - }, - "minecraft:block.nether_wood_hanging_sign.step": { - "protocol_id": 590 - }, - "minecraft:block.nether_wood_pressure_plate.click_off": { - "protocol_id": 833 - }, - "minecraft:block.nether_wood_pressure_plate.click_on": { - "protocol_id": 834 - }, - "minecraft:block.nether_wood_trapdoor.close": { - "protocol_id": 829 - }, - "minecraft:block.nether_wood_trapdoor.open": { - "protocol_id": 830 - }, - "minecraft:block.netherite_block.break": { - "protocol_id": 873 - }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 877 - }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 876 - }, - "minecraft:block.netherite_block.place": { - "protocol_id": 875 - }, - "minecraft:block.netherite_block.step": { - "protocol_id": 874 - }, - "minecraft:block.netherrack.break": { - "protocol_id": 878 - }, - "minecraft:block.netherrack.fall": { - "protocol_id": 882 - }, - "minecraft:block.netherrack.hit": { - "protocol_id": 881 - }, - "minecraft:block.netherrack.place": { - "protocol_id": 880 - }, - "minecraft:block.netherrack.step": { - "protocol_id": 879 - }, - "minecraft:block.note_block.banjo": { - "protocol_id": 898 - }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 883 - }, - "minecraft:block.note_block.bass": { - "protocol_id": 884 - }, - "minecraft:block.note_block.bell": { - "protocol_id": 885 - }, - "minecraft:block.note_block.bit": { - "protocol_id": 897 - }, - "minecraft:block.note_block.chime": { - "protocol_id": 886 - }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 895 - }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 896 - }, - "minecraft:block.note_block.flute": { - "protocol_id": 887 - }, - "minecraft:block.note_block.guitar": { - "protocol_id": 888 - }, - "minecraft:block.note_block.harp": { - "protocol_id": 889 - }, - "minecraft:block.note_block.hat": { - "protocol_id": 890 - }, - "minecraft:block.note_block.imitate.creeper": { - "protocol_id": 901 - }, - "minecraft:block.note_block.imitate.ender_dragon": { - "protocol_id": 902 - }, - "minecraft:block.note_block.imitate.piglin": { - "protocol_id": 904 - }, - "minecraft:block.note_block.imitate.skeleton": { - "protocol_id": 900 - }, - "minecraft:block.note_block.imitate.wither_skeleton": { - "protocol_id": 903 - }, - "minecraft:block.note_block.imitate.zombie": { - "protocol_id": 899 - }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 894 - }, - "minecraft:block.note_block.pling": { - "protocol_id": 891 - }, - "minecraft:block.note_block.snare": { - "protocol_id": 892 - }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 893 - }, - "minecraft:block.nylium.break": { - "protocol_id": 848 - }, - "minecraft:block.nylium.fall": { - "protocol_id": 852 - }, - "minecraft:block.nylium.hit": { - "protocol_id": 851 - }, - "minecraft:block.nylium.place": { - "protocol_id": 850 - }, - "minecraft:block.nylium.step": { - "protocol_id": 849 - }, - "minecraft:block.packed_mud.break": { - "protocol_id": 838 - }, - "minecraft:block.packed_mud.fall": { - "protocol_id": 839 - }, - "minecraft:block.packed_mud.hit": { - "protocol_id": 840 - }, - "minecraft:block.packed_mud.place": { - "protocol_id": 841 - }, - "minecraft:block.packed_mud.step": { - "protocol_id": 842 - }, - "minecraft:block.pink_petals.break": { - "protocol_id": 744 - }, - "minecraft:block.pink_petals.fall": { - "protocol_id": 745 - }, - "minecraft:block.pink_petals.hit": { - "protocol_id": 746 - }, - "minecraft:block.pink_petals.place": { - "protocol_id": 747 - }, - "minecraft:block.pink_petals.step": { - "protocol_id": 748 - }, - "minecraft:block.piston.contract": { - "protocol_id": 991 - }, - "minecraft:block.piston.extend": { - "protocol_id": 992 - }, - "minecraft:block.pointed_dripstone.break": { - "protocol_id": 370 - }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 376 - }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 378 - }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 377 - }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 379 - }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 374 - }, - "minecraft:block.pointed_dripstone.hit": { + "minecraft:block.dripstone_block.fall": { "protocol_id": 373 }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 375 - }, - "minecraft:block.pointed_dripstone.place": { + "minecraft:block.dripstone_block.hit": { "protocol_id": 372 }, - "minecraft:block.pointed_dripstone.step": { + "minecraft:block.dripstone_block.place": { "protocol_id": 371 }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 1019 + "minecraft:block.dripstone_block.step": { + "protocol_id": 370 }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 1020 + "minecraft:block.enchantment_table.use": { + "protocol_id": 406 }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 1021 + "minecraft:block.end_gateway.spawn": { + "protocol_id": 429 }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 1022 + "minecraft:block.end_portal.spawn": { + "protocol_id": 431 }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 1023 + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 430 }, - "minecraft:block.portal.ambient": { - "protocol_id": 1024 + "minecraft:block.ender_chest.close": { + "protocol_id": 407 }, - "minecraft:block.portal.travel": { - "protocol_id": 1025 + "minecraft:block.ender_chest.open": { + "protocol_id": 408 }, - "minecraft:block.portal.trigger": { - "protocol_id": 1026 + "minecraft:block.fence_gate.close": { + "protocol_id": 443 }, - "minecraft:block.powder_snow.break": { - "protocol_id": 1027 + "minecraft:block.fence_gate.open": { + "protocol_id": 444 }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 1028 + "minecraft:block.fire.ambient": { + "protocol_id": 454 }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 1029 + "minecraft:block.fire.extinguish": { + "protocol_id": 455 }, - "minecraft:block.powder_snow.place": { - "protocol_id": 1030 + "minecraft:block.flowering_azalea.break": { + "protocol_id": 461 }, - "minecraft:block.powder_snow.step": { - "protocol_id": 1031 + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 462 }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 1039 + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 463 }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 1064 + "minecraft:block.flowering_azalea.place": { + "protocol_id": 464 }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 1065 + "minecraft:block.flowering_azalea.step": { + "protocol_id": 465 }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 1066 + "minecraft:block.froglight.break": { + "protocol_id": 487 }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 1067 + "minecraft:block.froglight.fall": { + "protocol_id": 488 }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 1068 + "minecraft:block.froglight.hit": { + "protocol_id": 489 }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 1069 + "minecraft:block.froglight.place": { + "protocol_id": 490 }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 1070 + "minecraft:block.froglight.step": { + "protocol_id": 491 }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 1071 + "minecraft:block.frogspawn.break": { + "protocol_id": 493 }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 1072 + "minecraft:block.frogspawn.fall": { + "protocol_id": 494 }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 1073 + "minecraft:block.frogspawn.hatch": { + "protocol_id": 495 }, - "minecraft:block.roots.break": { + "minecraft:block.frogspawn.hit": { + "protocol_id": 496 + }, + "minecraft:block.frogspawn.place": { "protocol_id": 497 }, - "minecraft:block.roots.fall": { - "protocol_id": 501 + "minecraft:block.frogspawn.step": { + "protocol_id": 492 }, - "minecraft:block.roots.hit": { - "protocol_id": 500 + "minecraft:block.fungus.break": { + "protocol_id": 874 }, - "minecraft:block.roots.place": { - "protocol_id": 499 + "minecraft:block.fungus.fall": { + "protocol_id": 878 }, - "minecraft:block.roots.step": { - "protocol_id": 498 + "minecraft:block.fungus.hit": { + "protocol_id": 877 }, - "minecraft:block.sand.break": { + "minecraft:block.fungus.place": { + "protocol_id": 876 + }, + "minecraft:block.fungus.step": { + "protocol_id": 875 + }, + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 511 + }, + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 529 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 530 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 531 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 532 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 533 + }, + "minecraft:block.glass.break": { + "protocol_id": 534 + }, + "minecraft:block.glass.fall": { + "protocol_id": 535 + }, + "minecraft:block.glass.hit": { + "protocol_id": 536 + }, + "minecraft:block.glass.place": { + "protocol_id": 537 + }, + "minecraft:block.glass.step": { + "protocol_id": 538 + }, + "minecraft:block.grass.break": { + "protocol_id": 569 + }, + "minecraft:block.grass.fall": { + "protocol_id": 570 + }, + "minecraft:block.grass.hit": { + "protocol_id": 571 + }, + "minecraft:block.grass.place": { + "protocol_id": 572 + }, + "minecraft:block.grass.step": { + "protocol_id": 573 + }, + "minecraft:block.gravel.break": { + "protocol_id": 574 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 575 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 576 + }, + "minecraft:block.gravel.place": { + "protocol_id": 577 + }, + "minecraft:block.gravel.step": { + "protocol_id": 578 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 579 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 580 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 589 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 590 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 591 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 592 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 593 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 595 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 596 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 597 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 598 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 594 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 618 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 619 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 620 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 621 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 622 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 623 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 666 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 667 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 674 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 675 + }, + "minecraft:block.ladder.break": { + "protocol_id": 683 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 684 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 685 + }, + "minecraft:block.ladder.place": { + "protocol_id": 686 + }, + "minecraft:block.ladder.step": { + "protocol_id": 687 + }, + "minecraft:block.lantern.break": { + "protocol_id": 688 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 689 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 690 + }, + "minecraft:block.lantern.place": { + "protocol_id": 691 + }, + "minecraft:block.lantern.step": { + "protocol_id": 692 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 693 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 694 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 695 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 696 + }, + "minecraft:block.lava.pop": { + "protocol_id": 697 + }, + "minecraft:block.lever.click": { + "protocol_id": 700 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1362 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 714 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 718 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 717 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 716 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 715 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 726 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 727 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 728 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 729 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 730 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 731 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 732 + }, + "minecraft:block.metal.break": { + "protocol_id": 733 + }, + "minecraft:block.metal.fall": { + "protocol_id": 734 + }, + "minecraft:block.metal.hit": { + "protocol_id": 735 + }, + "minecraft:block.metal.place": { + "protocol_id": 736 + }, + "minecraft:block.metal.step": { + "protocol_id": 739 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 737 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 738 + }, + "minecraft:block.moss.break": { + "protocol_id": 758 + }, + "minecraft:block.moss.fall": { + "protocol_id": 759 + }, + "minecraft:block.moss.hit": { + "protocol_id": 760 + }, + "minecraft:block.moss.place": { + "protocol_id": 761 + }, + "minecraft:block.moss.step": { + "protocol_id": 762 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 748 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 749 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 750 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 751 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 752 + }, + "minecraft:block.mud.break": { + "protocol_id": 763 + }, + "minecraft:block.mud.fall": { + "protocol_id": 764 + }, + "minecraft:block.mud.hit": { + "protocol_id": 765 + }, + "minecraft:block.mud.place": { + "protocol_id": 766 + }, + "minecraft:block.mud.step": { + "protocol_id": 767 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 768 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 769 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 770 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 771 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 772 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 773 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 774 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 775 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 776 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 777 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 831 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 835 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 834 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 833 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 832 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1070 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1071 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1072 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1073 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1074 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1075 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1076 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1077 + }, + "minecraft:block.nether_ore.place": { "protocol_id": 1078 }, - "minecraft:block.sand.fall": { + "minecraft:block.nether_ore.step": { "protocol_id": 1079 }, - "minecraft:block.sand.hit": { - "protocol_id": 1080 - }, - "minecraft:block.sand.place": { - "protocol_id": 1081 - }, - "minecraft:block.sand.step": { - "protocol_id": 1082 - }, - "minecraft:block.scaffolding.break": { - "protocol_id": 1083 - }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 1084 - }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 1085 - }, - "minecraft:block.scaffolding.place": { - "protocol_id": 1086 - }, - "minecraft:block.scaffolding.step": { - "protocol_id": 1087 - }, - "minecraft:block.sculk.break": { - "protocol_id": 1090 - }, - "minecraft:block.sculk.charge": { - "protocol_id": 1089 - }, - "minecraft:block.sculk.fall": { - "protocol_id": 1091 - }, - "minecraft:block.sculk.hit": { - "protocol_id": 1092 - }, - "minecraft:block.sculk.place": { - "protocol_id": 1093 - }, - "minecraft:block.sculk.spread": { - "protocol_id": 1088 - }, - "minecraft:block.sculk.step": { - "protocol_id": 1094 - }, - "minecraft:block.sculk_catalyst.bloom": { - "protocol_id": 1095 - }, - "minecraft:block.sculk_catalyst.break": { - "protocol_id": 1096 - }, - "minecraft:block.sculk_catalyst.fall": { - "protocol_id": 1097 - }, - "minecraft:block.sculk_catalyst.hit": { - "protocol_id": 1098 - }, - "minecraft:block.sculk_catalyst.place": { - "protocol_id": 1099 - }, - "minecraft:block.sculk_catalyst.step": { - "protocol_id": 1100 - }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 1103 - }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 1101 - }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 1102 - }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 1104 - }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 1105 - }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 1106 - }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 1107 - }, - "minecraft:block.sculk_shrieker.break": { - "protocol_id": 1108 - }, - "minecraft:block.sculk_shrieker.fall": { - "protocol_id": 1109 - }, - "minecraft:block.sculk_shrieker.hit": { - "protocol_id": 1110 - }, - "minecraft:block.sculk_shrieker.place": { - "protocol_id": 1111 - }, - "minecraft:block.sculk_shrieker.shriek": { - "protocol_id": 1112 - }, - "minecraft:block.sculk_shrieker.step": { - "protocol_id": 1113 - }, - "minecraft:block.sculk_vein.break": { - "protocol_id": 1114 - }, - "minecraft:block.sculk_vein.fall": { - "protocol_id": 1115 - }, - "minecraft:block.sculk_vein.hit": { - "protocol_id": 1116 - }, - "minecraft:block.sculk_vein.place": { - "protocol_id": 1117 - }, - "minecraft:block.sculk_vein.step": { - "protocol_id": 1118 - }, - "minecraft:block.shroomlight.break": { - "protocol_id": 1126 - }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 1130 - }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 1129 - }, - "minecraft:block.shroomlight.place": { - "protocol_id": 1128 - }, - "minecraft:block.shroomlight.step": { - "protocol_id": 1127 - }, - "minecraft:block.shulker_box.close": { - "protocol_id": 1133 - }, - "minecraft:block.shulker_box.open": { - "protocol_id": 1134 - }, - "minecraft:block.slime_block.break": { - "protocol_id": 1167 - }, - "minecraft:block.slime_block.fall": { - "protocol_id": 1168 - }, - "minecraft:block.slime_block.hit": { - "protocol_id": 1169 - }, - "minecraft:block.slime_block.place": { - "protocol_id": 1170 - }, - "minecraft:block.slime_block.step": { - "protocol_id": 1171 - }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 1172 - }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 1173 - }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 1174 - }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 1175 - }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 1176 - }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 1177 - }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 1178 - }, - "minecraft:block.smithing_table.use": { - "protocol_id": 1208 - }, - "minecraft:block.smoker.smoke": { - "protocol_id": 1209 - }, - "minecraft:block.snow.break": { - "protocol_id": 1223 - }, - "minecraft:block.snow.fall": { - "protocol_id": 1224 - }, - "minecraft:block.snow.hit": { - "protocol_id": 1230 - }, - "minecraft:block.snow.place": { - "protocol_id": 1231 - }, - "minecraft:block.snow.step": { - "protocol_id": 1232 - }, - "minecraft:block.soul_sand.break": { - "protocol_id": 1179 - }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 1183 - }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 1182 - }, - "minecraft:block.soul_sand.place": { - "protocol_id": 1181 - }, - "minecraft:block.soul_sand.step": { - "protocol_id": 1180 - }, - "minecraft:block.soul_soil.break": { - "protocol_id": 1184 - }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 1188 - }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 1187 - }, - "minecraft:block.soul_soil.place": { - "protocol_id": 1186 - }, - "minecraft:block.soul_soil.step": { - "protocol_id": 1185 - }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 1190 - }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 1191 - }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 1192 - }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 1193 - }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 1194 - }, - "minecraft:block.stem.break": { - "protocol_id": 843 - }, - "minecraft:block.stem.fall": { - "protocol_id": 847 - }, - "minecraft:block.stem.hit": { - "protocol_id": 846 - }, - "minecraft:block.stem.place": { - "protocol_id": 845 - }, - "minecraft:block.stem.step": { - "protocol_id": 844 - }, - "minecraft:block.stone.break": { - "protocol_id": 1245 - }, - "minecraft:block.stone.fall": { - "protocol_id": 1248 - }, - "minecraft:block.stone.hit": { - "protocol_id": 1249 - }, - "minecraft:block.stone.place": { - "protocol_id": 1250 - }, - "minecraft:block.stone.step": { - "protocol_id": 1253 - }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1246 - }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1247 - }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1251 - }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1252 - }, - "minecraft:block.suspicious_sand.break": { - "protocol_id": 473 - }, - "minecraft:block.suspicious_sand.fall": { - "protocol_id": 477 - }, - "minecraft:block.suspicious_sand.hit": { - "protocol_id": 476 - }, - "minecraft:block.suspicious_sand.place": { - "protocol_id": 475 - }, - "minecraft:block.suspicious_sand.step": { - "protocol_id": 474 - }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1258 - }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1260 - }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1259 - }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1276 - }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1277 - }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1278 - }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1279 - }, - "minecraft:block.tuff.break": { - "protocol_id": 1284 - }, - "minecraft:block.tuff.fall": { - "protocol_id": 1288 - }, - "minecraft:block.tuff.hit": { - "protocol_id": 1287 - }, - "minecraft:block.tuff.place": { - "protocol_id": 1286 - }, - "minecraft:block.tuff.step": { - "protocol_id": 1285 - }, - "minecraft:block.vine.break": { - "protocol_id": 1338 - }, - "minecraft:block.vine.fall": { - "protocol_id": 1339 - }, - "minecraft:block.vine.hit": { - "protocol_id": 1340 - }, - "minecraft:block.vine.place": { - "protocol_id": 1341 - }, - "minecraft:block.vine.step": { - "protocol_id": 1342 - }, - "minecraft:block.wart_block.break": { - "protocol_id": 868 - }, - "minecraft:block.wart_block.fall": { - "protocol_id": 872 - }, - "minecraft:block.wart_block.hit": { - "protocol_id": 871 - }, - "minecraft:block.wart_block.place": { - "protocol_id": 870 - }, - "minecraft:block.wart_block.step": { + "minecraft:block.nether_sprouts.break": { "protocol_id": 869 }, - "minecraft:block.water.ambient": { - "protocol_id": 1374 + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 873 }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 863 + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 872 }, - "minecraft:block.weeping_vines.fall": { - "protocol_id": 867 + "minecraft:block.nether_sprouts.place": { + "protocol_id": 871 }, - "minecraft:block.weeping_vines.hit": { - "protocol_id": 866 + "minecraft:block.nether_sprouts.step": { + "protocol_id": 870 }, - "minecraft:block.weeping_vines.place": { - "protocol_id": 865 + "minecraft:block.nether_wart.break": { + "protocol_id": 836 }, - "minecraft:block.weeping_vines.step": { + "minecraft:block.nether_wood.break": { + "protocol_id": 838 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 839 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 840 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 841 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 842 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 847 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 848 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 843 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 844 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 851 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 852 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 600 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 601 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 602 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 603 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 599 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 849 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 850 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 845 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 846 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 889 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 893 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 892 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 891 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 890 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 894 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 898 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 897 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 896 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 895 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 914 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 899 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 900 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 901 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 913 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 902 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 911 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 912 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 903 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 904 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 905 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 906 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 917 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 918 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 920 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 916 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 919 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 915 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 910 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 907 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 908 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 909 + }, + "minecraft:block.nylium.break": { "protocol_id": 864 }, + "minecraft:block.nylium.fall": { + "protocol_id": 868 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 867 + }, + "minecraft:block.nylium.place": { + "protocol_id": 866 + }, + "minecraft:block.nylium.step": { + "protocol_id": 865 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 854 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 855 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 856 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 857 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 858 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 753 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 754 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 755 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 756 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 757 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1007 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1008 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 374 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 380 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 382 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 381 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 383 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 378 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 377 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 379 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 376 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 375 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1035 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1036 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1037 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1038 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1039 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1040 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1041 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1042 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1043 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1044 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1045 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1046 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1047 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1055 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1080 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1081 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1082 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1083 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1084 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1085 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1086 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1087 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1088 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1089 + }, + "minecraft:block.roots.break": { + "protocol_id": 506 + }, + "minecraft:block.roots.fall": { + "protocol_id": 510 + }, + "minecraft:block.roots.hit": { + "protocol_id": 509 + }, + "minecraft:block.roots.place": { + "protocol_id": 508 + }, + "minecraft:block.roots.step": { + "protocol_id": 507 + }, + "minecraft:block.sand.break": { + "protocol_id": 1094 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1095 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1096 + }, + "minecraft:block.sand.place": { + "protocol_id": 1097 + }, + "minecraft:block.sand.step": { + "protocol_id": 1098 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1099 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1100 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1101 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1102 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1103 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1106 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1105 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1107 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1108 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1109 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1104 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1110 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1111 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1112 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1113 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1114 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1115 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1116 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1119 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1117 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1118 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1120 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1121 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1122 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1123 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1124 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1125 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1126 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1127 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1128 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1129 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1130 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1131 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1132 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1133 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1134 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1142 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1146 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1145 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1144 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1143 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1149 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1150 + }, + "minecraft:block.sign.waxed_interact_fail": { + "protocol_id": 1393 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1183 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1184 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1185 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1186 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1187 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1188 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1189 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1190 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1191 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1192 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1193 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1194 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1224 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1225 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1239 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1240 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1238 + }, + "minecraft:block.snow.break": { + "protocol_id": 1242 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1243 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1249 + }, + "minecraft:block.snow.place": { + "protocol_id": 1250 + }, + "minecraft:block.snow.step": { + "protocol_id": 1251 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1195 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1199 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1198 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1197 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1196 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1200 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1204 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1203 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1202 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1201 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1206 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1207 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1208 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1209 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1210 + }, + "minecraft:block.stem.break": { + "protocol_id": 859 + }, + "minecraft:block.stem.fall": { + "protocol_id": 863 + }, + "minecraft:block.stem.hit": { + "protocol_id": 862 + }, + "minecraft:block.stem.place": { + "protocol_id": 861 + }, + "minecraft:block.stem.step": { + "protocol_id": 860 + }, + "minecraft:block.stone.break": { + "protocol_id": 1264 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1267 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1268 + }, + "minecraft:block.stone.place": { + "protocol_id": 1269 + }, + "minecraft:block.stone.step": { + "protocol_id": 1272 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1265 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1266 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1270 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1271 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 482 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 486 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 485 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 484 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 483 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 477 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 481 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 480 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 479 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 478 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1277 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1279 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1278 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1295 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1296 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1297 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1298 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1303 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1307 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1306 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1305 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1304 + }, + "minecraft:block.vine.break": { + "protocol_id": 1357 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1358 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1359 + }, + "minecraft:block.vine.place": { + "protocol_id": 1360 + }, + "minecraft:block.vine.step": { + "protocol_id": 1361 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 884 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 888 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 887 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 886 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 885 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1394 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 879 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 883 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 882 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 881 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 880 + }, "minecraft:block.wet_grass.break": { - "protocol_id": 1377 + "protocol_id": 1397 }, "minecraft:block.wet_grass.fall": { - "protocol_id": 1378 + "protocol_id": 1398 }, "minecraft:block.wet_grass.hit": { - "protocol_id": 1379 + "protocol_id": 1399 }, "minecraft:block.wet_grass.place": { - "protocol_id": 1380 + "protocol_id": 1400 }, "minecraft:block.wet_grass.step": { - "protocol_id": 1381 + "protocol_id": 1401 }, "minecraft:block.wood.break": { - "protocol_id": 1415 + "protocol_id": 1435 }, "minecraft:block.wood.fall": { - "protocol_id": 1416 + "protocol_id": 1436 }, "minecraft:block.wood.hit": { - "protocol_id": 1417 + "protocol_id": 1437 }, "minecraft:block.wood.place": { - "protocol_id": 1418 + "protocol_id": 1438 }, "minecraft:block.wood.step": { - "protocol_id": 1419 + "protocol_id": 1439 }, "minecraft:block.wooden_button.click_off": { - "protocol_id": 1411 + "protocol_id": 1431 }, "minecraft:block.wooden_button.click_on": { - "protocol_id": 1412 + "protocol_id": 1432 }, "minecraft:block.wooden_door.close": { - "protocol_id": 1407 + "protocol_id": 1427 }, "minecraft:block.wooden_door.open": { - "protocol_id": 1408 + "protocol_id": 1428 }, "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1413 + "protocol_id": 1433 }, "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1414 + "protocol_id": 1434 }, "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1409 + "protocol_id": 1429 }, "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1410 + "protocol_id": 1430 }, "minecraft:block.wool.break": { - "protocol_id": 1420 + "protocol_id": 1440 }, "minecraft:block.wool.fall": { - "protocol_id": 1421 + "protocol_id": 1441 }, "minecraft:block.wool.hit": { - "protocol_id": 1422 + "protocol_id": 1442 }, "minecraft:block.wool.place": { - "protocol_id": 1423 + "protocol_id": 1443 }, "minecraft:block.wool.step": { - "protocol_id": 1424 + "protocol_id": 1444 }, "minecraft:enchant.thorns.hit": { - "protocol_id": 1265 + "protocol_id": 1284 }, "minecraft:entity.allay.ambient_with_item": { "protocol_id": 0 @@ -11884,2374 +12158,2404 @@ "protocol_id": 6 }, "minecraft:entity.armor_stand.break": { - "protocol_id": 62 - }, - "minecraft:entity.armor_stand.fall": { "protocol_id": 63 }, - "minecraft:entity.armor_stand.hit": { + "minecraft:entity.armor_stand.fall": { "protocol_id": 64 }, - "minecraft:entity.armor_stand.place": { + "minecraft:entity.armor_stand.hit": { "protocol_id": 65 }, - "minecraft:entity.arrow.hit": { + "minecraft:entity.armor_stand.place": { "protocol_id": 66 }, - "minecraft:entity.arrow.hit_player": { + "minecraft:entity.arrow.hit": { "protocol_id": 67 }, - "minecraft:entity.arrow.shoot": { + "minecraft:entity.arrow.hit_player": { "protocol_id": 68 }, - "minecraft:entity.axolotl.attack": { - "protocol_id": 72 - }, - "minecraft:entity.axolotl.death": { - "protocol_id": 73 - }, - "minecraft:entity.axolotl.hurt": { - "protocol_id": 74 - }, - "minecraft:entity.axolotl.idle_air": { - "protocol_id": 75 - }, - "minecraft:entity.axolotl.idle_water": { - "protocol_id": 76 - }, - "minecraft:entity.axolotl.splash": { - "protocol_id": 77 - }, - "minecraft:entity.axolotl.swim": { - "protocol_id": 78 - }, - "minecraft:entity.bat.ambient": { - "protocol_id": 119 - }, - "minecraft:entity.bat.death": { - "protocol_id": 120 - }, - "minecraft:entity.bat.hurt": { - "protocol_id": 121 - }, - "minecraft:entity.bat.loop": { - "protocol_id": 122 - }, - "minecraft:entity.bat.takeoff": { - "protocol_id": 123 - }, - "minecraft:entity.bee.death": { - "protocol_id": 128 - }, - "minecraft:entity.bee.hurt": { - "protocol_id": 129 - }, - "minecraft:entity.bee.loop": { - "protocol_id": 131 - }, - "minecraft:entity.bee.loop_aggressive": { - "protocol_id": 130 - }, - "minecraft:entity.bee.pollinate": { - "protocol_id": 133 - }, - "minecraft:entity.bee.sting": { - "protocol_id": 132 - }, - "minecraft:entity.blaze.ambient": { - "protocol_id": 146 - }, - "minecraft:entity.blaze.burn": { - "protocol_id": 147 - }, - "minecraft:entity.blaze.death": { - "protocol_id": 148 - }, - "minecraft:entity.blaze.hurt": { - "protocol_id": 149 - }, - "minecraft:entity.blaze.shoot": { - "protocol_id": 150 - }, - "minecraft:entity.boat.paddle_land": { - "protocol_id": 151 - }, - "minecraft:entity.boat.paddle_water": { - "protocol_id": 152 - }, - "minecraft:entity.camel.ambient": { - "protocol_id": 194 - }, - "minecraft:entity.camel.dash": { - "protocol_id": 195 - }, - "minecraft:entity.camel.dash_ready": { - "protocol_id": 196 - }, - "minecraft:entity.camel.death": { - "protocol_id": 197 - }, - "minecraft:entity.camel.eat": { - "protocol_id": 198 - }, - "minecraft:entity.camel.hurt": { - "protocol_id": 199 - }, - "minecraft:entity.camel.saddle": { - "protocol_id": 200 - }, - "minecraft:entity.camel.sit": { - "protocol_id": 201 - }, - "minecraft:entity.camel.stand": { - "protocol_id": 202 - }, - "minecraft:entity.camel.step": { - "protocol_id": 203 - }, - "minecraft:entity.camel.step_sand": { - "protocol_id": 204 - }, - "minecraft:entity.cat.ambient": { - "protocol_id": 213 - }, - "minecraft:entity.cat.beg_for_food": { - "protocol_id": 218 - }, - "minecraft:entity.cat.death": { - "protocol_id": 215 - }, - "minecraft:entity.cat.eat": { - "protocol_id": 216 - }, - "minecraft:entity.cat.hiss": { - "protocol_id": 217 - }, - "minecraft:entity.cat.hurt": { - "protocol_id": 219 - }, - "minecraft:entity.cat.purr": { - "protocol_id": 220 - }, - "minecraft:entity.cat.purreow": { - "protocol_id": 221 - }, - "minecraft:entity.cat.stray_ambient": { - "protocol_id": 214 - }, - "minecraft:entity.chicken.ambient": { - "protocol_id": 266 - }, - "minecraft:entity.chicken.death": { - "protocol_id": 267 - }, - "minecraft:entity.chicken.egg": { - "protocol_id": 268 - }, - "minecraft:entity.chicken.hurt": { - "protocol_id": 269 - }, - "minecraft:entity.chicken.step": { - "protocol_id": 270 - }, - "minecraft:entity.cod.ambient": { - "protocol_id": 283 - }, - "minecraft:entity.cod.death": { - "protocol_id": 284 - }, - "minecraft:entity.cod.flop": { - "protocol_id": 285 - }, - "minecraft:entity.cod.hurt": { - "protocol_id": 286 - }, - "minecraft:entity.cow.ambient": { - "protocol_id": 307 - }, - "minecraft:entity.cow.death": { - "protocol_id": 308 - }, - "minecraft:entity.cow.hurt": { - "protocol_id": 309 - }, - "minecraft:entity.cow.milk": { - "protocol_id": 310 - }, - "minecraft:entity.cow.step": { - "protocol_id": 311 - }, - "minecraft:entity.creeper.death": { - "protocol_id": 312 - }, - "minecraft:entity.creeper.hurt": { - "protocol_id": 313 - }, - "minecraft:entity.creeper.primed": { - "protocol_id": 314 - }, - "minecraft:entity.dolphin.ambient": { - "protocol_id": 349 - }, - "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 350 - }, - "minecraft:entity.dolphin.attack": { - "protocol_id": 351 - }, - "minecraft:entity.dolphin.death": { - "protocol_id": 352 - }, - "minecraft:entity.dolphin.eat": { - "protocol_id": 353 - }, - "minecraft:entity.dolphin.hurt": { - "protocol_id": 354 - }, - "minecraft:entity.dolphin.jump": { - "protocol_id": 355 - }, - "minecraft:entity.dolphin.play": { - "protocol_id": 356 - }, - "minecraft:entity.dolphin.splash": { - "protocol_id": 357 - }, - "minecraft:entity.dolphin.swim": { - "protocol_id": 358 - }, - "minecraft:entity.donkey.ambient": { - "protocol_id": 359 - }, - "minecraft:entity.donkey.angry": { - "protocol_id": 360 - }, - "minecraft:entity.donkey.chest": { - "protocol_id": 361 - }, - "minecraft:entity.donkey.death": { - "protocol_id": 362 - }, - "minecraft:entity.donkey.eat": { - "protocol_id": 363 - }, - "minecraft:entity.donkey.hurt": { - "protocol_id": 364 - }, - "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 407 - }, - "minecraft:entity.drowned.ambient": { - "protocol_id": 382 - }, - "minecraft:entity.drowned.ambient_water": { - "protocol_id": 383 - }, - "minecraft:entity.drowned.death": { - "protocol_id": 384 - }, - "minecraft:entity.drowned.death_water": { - "protocol_id": 385 - }, - "minecraft:entity.drowned.hurt": { - "protocol_id": 386 - }, - "minecraft:entity.drowned.hurt_water": { - "protocol_id": 387 - }, - "minecraft:entity.drowned.shoot": { - "protocol_id": 388 - }, - "minecraft:entity.drowned.step": { - "protocol_id": 389 - }, - "minecraft:entity.drowned.swim": { - "protocol_id": 390 - }, - "minecraft:entity.egg.throw": { - "protocol_id": 392 - }, - "minecraft:entity.elder_guardian.ambient": { - "protocol_id": 393 - }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 394 - }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 395 - }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 396 - }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 397 - }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 398 - }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 399 - }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 400 - }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 405 - }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 406 - }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 408 - }, - "minecraft:entity.ender_dragon.growl": { - "protocol_id": 409 - }, - "minecraft:entity.ender_dragon.hurt": { - "protocol_id": 410 - }, - "minecraft:entity.ender_dragon.shoot": { - "protocol_id": 411 - }, - "minecraft:entity.ender_eye.death": { - "protocol_id": 412 - }, - "minecraft:entity.ender_eye.launch": { - "protocol_id": 413 - }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 424 - }, - "minecraft:entity.enderman.ambient": { - "protocol_id": 414 - }, - "minecraft:entity.enderman.death": { - "protocol_id": 415 - }, - "minecraft:entity.enderman.hurt": { - "protocol_id": 416 - }, - "minecraft:entity.enderman.scream": { - "protocol_id": 417 - }, - "minecraft:entity.enderman.stare": { - "protocol_id": 418 - }, - "minecraft:entity.enderman.teleport": { - "protocol_id": 419 - }, - "minecraft:entity.endermite.ambient": { - "protocol_id": 420 - }, - "minecraft:entity.endermite.death": { - "protocol_id": 421 - }, - "minecraft:entity.endermite.hurt": { - "protocol_id": 422 - }, - "minecraft:entity.endermite.step": { - "protocol_id": 423 - }, - "minecraft:entity.evoker.ambient": { - "protocol_id": 428 - }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 429 - }, - "minecraft:entity.evoker.celebrate": { - "protocol_id": 430 - }, - "minecraft:entity.evoker.death": { - "protocol_id": 431 - }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 433 - }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 434 - }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 435 - }, - "minecraft:entity.evoker.prepare_wololo": { - "protocol_id": 436 - }, - "minecraft:entity.evoker_fangs.attack": { - "protocol_id": 432 - }, - "minecraft:entity.experience_bottle.throw": { - "protocol_id": 437 - }, - "minecraft:entity.experience_orb.pickup": { - "protocol_id": 438 - }, - "minecraft:entity.firework_rocket.blast": { - "protocol_id": 442 - }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 443 - }, - "minecraft:entity.firework_rocket.large_blast": { - "protocol_id": 444 - }, - "minecraft:entity.firework_rocket.large_blast_far": { - "protocol_id": 445 - }, - "minecraft:entity.firework_rocket.launch": { - "protocol_id": 446 - }, - "minecraft:entity.firework_rocket.shoot": { - "protocol_id": 447 - }, - "minecraft:entity.firework_rocket.twinkle": { - "protocol_id": 448 - }, - "minecraft:entity.firework_rocket.twinkle_far": { - "protocol_id": 449 - }, - "minecraft:entity.fish.swim": { - "protocol_id": 452 - }, - "minecraft:entity.fishing_bobber.retrieve": { - "protocol_id": 453 - }, - "minecraft:entity.fishing_bobber.splash": { - "protocol_id": 454 - }, - "minecraft:entity.fishing_bobber.throw": { - "protocol_id": 455 - }, - "minecraft:entity.fox.aggro": { - "protocol_id": 462 - }, - "minecraft:entity.fox.ambient": { - "protocol_id": 463 - }, - "minecraft:entity.fox.bite": { - "protocol_id": 464 - }, - "minecraft:entity.fox.death": { - "protocol_id": 465 - }, - "minecraft:entity.fox.eat": { - "protocol_id": 466 - }, - "minecraft:entity.fox.hurt": { - "protocol_id": 467 - }, - "minecraft:entity.fox.screech": { - "protocol_id": 468 - }, - "minecraft:entity.fox.sleep": { - "protocol_id": 469 - }, - "minecraft:entity.fox.sniff": { - "protocol_id": 470 - }, - "minecraft:entity.fox.spit": { - "protocol_id": 471 - }, - "minecraft:entity.fox.teleport": { - "protocol_id": 472 - }, - "minecraft:entity.frog.ambient": { - "protocol_id": 489 - }, - "minecraft:entity.frog.death": { - "protocol_id": 490 - }, - "minecraft:entity.frog.eat": { - "protocol_id": 491 - }, - "minecraft:entity.frog.hurt": { - "protocol_id": 492 - }, - "minecraft:entity.frog.lay_spawn": { - "protocol_id": 493 - }, - "minecraft:entity.frog.long_jump": { - "protocol_id": 494 - }, - "minecraft:entity.frog.step": { - "protocol_id": 495 - }, - "minecraft:entity.frog.tongue": { - "protocol_id": 496 - }, - "minecraft:entity.generic.big_fall": { - "protocol_id": 503 - }, - "minecraft:entity.generic.burn": { - "protocol_id": 504 - }, - "minecraft:entity.generic.death": { - "protocol_id": 505 - }, - "minecraft:entity.generic.drink": { - "protocol_id": 506 - }, - "minecraft:entity.generic.eat": { - "protocol_id": 507 - }, - "minecraft:entity.generic.explode": { - "protocol_id": 508 - }, - "minecraft:entity.generic.extinguish_fire": { - "protocol_id": 509 - }, - "minecraft:entity.generic.hurt": { - "protocol_id": 510 - }, - "minecraft:entity.generic.small_fall": { - "protocol_id": 511 - }, - "minecraft:entity.generic.splash": { - "protocol_id": 512 - }, - "minecraft:entity.generic.swim": { - "protocol_id": 513 - }, - "minecraft:entity.ghast.ambient": { - "protocol_id": 514 - }, - "minecraft:entity.ghast.death": { - "protocol_id": 515 - }, - "minecraft:entity.ghast.hurt": { - "protocol_id": 516 - }, - "minecraft:entity.ghast.scream": { - "protocol_id": 517 - }, - "minecraft:entity.ghast.shoot": { - "protocol_id": 518 - }, - "minecraft:entity.ghast.warn": { - "protocol_id": 519 - }, - "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 531 - }, - "minecraft:entity.glow_item_frame.break": { - "protocol_id": 532 - }, - "minecraft:entity.glow_item_frame.place": { - "protocol_id": 533 - }, - "minecraft:entity.glow_item_frame.remove_item": { - "protocol_id": 534 - }, - "minecraft:entity.glow_item_frame.rotate_item": { - "protocol_id": 535 - }, - "minecraft:entity.glow_squid.ambient": { - "protocol_id": 536 - }, - "minecraft:entity.glow_squid.death": { - "protocol_id": 537 - }, - "minecraft:entity.glow_squid.hurt": { - "protocol_id": 538 - }, - "minecraft:entity.glow_squid.squirt": { - "protocol_id": 539 - }, - "minecraft:entity.goat.ambient": { - "protocol_id": 540 - }, - "minecraft:entity.goat.death": { - "protocol_id": 541 - }, - "minecraft:entity.goat.eat": { - "protocol_id": 542 - }, - "minecraft:entity.goat.horn_break": { - "protocol_id": 548 - }, - "minecraft:entity.goat.hurt": { - "protocol_id": 543 - }, - "minecraft:entity.goat.long_jump": { - "protocol_id": 544 - }, - "minecraft:entity.goat.milk": { - "protocol_id": 545 - }, - "minecraft:entity.goat.prepare_ram": { - "protocol_id": 546 - }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 547 - }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 550 - }, - "minecraft:entity.goat.screaming.death": { - "protocol_id": 551 - }, - "minecraft:entity.goat.screaming.eat": { - "protocol_id": 552 - }, - "minecraft:entity.goat.screaming.horn_break": { - "protocol_id": 558 - }, - "minecraft:entity.goat.screaming.hurt": { - "protocol_id": 553 - }, - "minecraft:entity.goat.screaming.long_jump": { - "protocol_id": 554 - }, - "minecraft:entity.goat.screaming.milk": { - "protocol_id": 555 - }, - "minecraft:entity.goat.screaming.prepare_ram": { - "protocol_id": 556 - }, - "minecraft:entity.goat.screaming.ram_impact": { - "protocol_id": 557 - }, - "minecraft:entity.goat.step": { - "protocol_id": 559 - }, - "minecraft:entity.guardian.ambient": { - "protocol_id": 572 - }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 573 - }, - "minecraft:entity.guardian.attack": { - "protocol_id": 574 - }, - "minecraft:entity.guardian.death": { - "protocol_id": 575 - }, - "minecraft:entity.guardian.death_land": { - "protocol_id": 576 - }, - "minecraft:entity.guardian.flop": { - "protocol_id": 577 - }, - "minecraft:entity.guardian.hurt": { - "protocol_id": 578 - }, - "minecraft:entity.guardian.hurt_land": { - "protocol_id": 579 - }, - "minecraft:entity.hoglin.ambient": { - "protocol_id": 601 - }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 602 - }, - "minecraft:entity.hoglin.attack": { - "protocol_id": 603 - }, - "minecraft:entity.hoglin.converted_to_zombified": { - "protocol_id": 604 - }, - "minecraft:entity.hoglin.death": { - "protocol_id": 605 - }, - "minecraft:entity.hoglin.hurt": { - "protocol_id": 606 - }, - "minecraft:entity.hoglin.retreat": { - "protocol_id": 607 - }, - "minecraft:entity.hoglin.step": { - "protocol_id": 608 - }, - "minecraft:entity.horse.ambient": { - "protocol_id": 625 - }, - "minecraft:entity.horse.angry": { - "protocol_id": 626 - }, - "minecraft:entity.horse.armor": { - "protocol_id": 627 - }, - "minecraft:entity.horse.breathe": { - "protocol_id": 628 - }, - "minecraft:entity.horse.death": { - "protocol_id": 629 - }, - "minecraft:entity.horse.eat": { - "protocol_id": 630 - }, - "minecraft:entity.horse.gallop": { - "protocol_id": 631 - }, - "minecraft:entity.horse.hurt": { - "protocol_id": 632 - }, - "minecraft:entity.horse.jump": { - "protocol_id": 633 - }, - "minecraft:entity.horse.land": { - "protocol_id": 634 - }, - "minecraft:entity.horse.saddle": { - "protocol_id": 635 - }, - "minecraft:entity.horse.step": { - "protocol_id": 636 - }, - "minecraft:entity.horse.step_wood": { - "protocol_id": 637 - }, - "minecraft:entity.hostile.big_fall": { - "protocol_id": 638 - }, - "minecraft:entity.hostile.death": { - "protocol_id": 639 - }, - "minecraft:entity.hostile.hurt": { - "protocol_id": 640 - }, - "minecraft:entity.hostile.small_fall": { - "protocol_id": 641 - }, - "minecraft:entity.hostile.splash": { - "protocol_id": 642 - }, - "minecraft:entity.hostile.swim": { - "protocol_id": 643 - }, - "minecraft:entity.husk.ambient": { - "protocol_id": 644 - }, - "minecraft:entity.husk.converted_to_zombie": { - "protocol_id": 645 - }, - "minecraft:entity.husk.death": { - "protocol_id": 646 - }, - "minecraft:entity.husk.hurt": { - "protocol_id": 647 - }, - "minecraft:entity.husk.step": { - "protocol_id": 648 - }, - "minecraft:entity.illusioner.ambient": { - "protocol_id": 649 - }, - "minecraft:entity.illusioner.cast_spell": { - "protocol_id": 650 - }, - "minecraft:entity.illusioner.death": { - "protocol_id": 651 - }, - "minecraft:entity.illusioner.hurt": { - "protocol_id": 652 - }, - "minecraft:entity.illusioner.mirror_move": { - "protocol_id": 653 - }, - "minecraft:entity.illusioner.prepare_blindness": { - "protocol_id": 654 - }, - "minecraft:entity.illusioner.prepare_mirror": { - "protocol_id": 655 - }, - "minecraft:entity.iron_golem.attack": { - "protocol_id": 659 - }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 660 - }, - "minecraft:entity.iron_golem.death": { - "protocol_id": 661 - }, - "minecraft:entity.iron_golem.hurt": { - "protocol_id": 662 - }, - "minecraft:entity.iron_golem.repair": { - "protocol_id": 663 - }, - "minecraft:entity.iron_golem.step": { - "protocol_id": 664 - }, - "minecraft:entity.item.break": { - "protocol_id": 672 - }, - "minecraft:entity.item.pickup": { - "protocol_id": 673 - }, - "minecraft:entity.item_frame.add_item": { - "protocol_id": 667 - }, - "minecraft:entity.item_frame.break": { - "protocol_id": 668 - }, - "minecraft:entity.item_frame.place": { - "protocol_id": 669 - }, - "minecraft:entity.item_frame.remove_item": { - "protocol_id": 670 - }, - "minecraft:entity.item_frame.rotate_item": { - "protocol_id": 671 - }, - "minecraft:entity.leash_knot.break": { - "protocol_id": 689 - }, - "minecraft:entity.leash_knot.place": { - "protocol_id": 690 - }, - "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 692 - }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 693 - }, - "minecraft:entity.lingering_potion.throw": { - "protocol_id": 694 - }, - "minecraft:entity.llama.ambient": { - "protocol_id": 695 - }, - "minecraft:entity.llama.angry": { - "protocol_id": 696 - }, - "minecraft:entity.llama.chest": { - "protocol_id": 697 - }, - "minecraft:entity.llama.death": { - "protocol_id": 698 - }, - "minecraft:entity.llama.eat": { - "protocol_id": 699 - }, - "minecraft:entity.llama.hurt": { - "protocol_id": 700 - }, - "minecraft:entity.llama.spit": { - "protocol_id": 701 - }, - "minecraft:entity.llama.step": { - "protocol_id": 702 - }, - "minecraft:entity.llama.swag": { - "protocol_id": 703 - }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 711 - }, - "minecraft:entity.magma_cube.death_small": { - "protocol_id": 704 - }, - "minecraft:entity.magma_cube.hurt": { - "protocol_id": 712 - }, - "minecraft:entity.magma_cube.hurt_small": { - "protocol_id": 713 - }, - "minecraft:entity.magma_cube.jump": { - "protocol_id": 714 - }, - "minecraft:entity.magma_cube.squish": { - "protocol_id": 715 - }, - "minecraft:entity.magma_cube.squish_small": { - "protocol_id": 716 - }, - "minecraft:entity.minecart.inside": { - "protocol_id": 732 - }, - "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 731 - }, - "minecraft:entity.minecart.riding": { - "protocol_id": 733 - }, - "minecraft:entity.mooshroom.convert": { - "protocol_id": 734 - }, - "minecraft:entity.mooshroom.eat": { - "protocol_id": 735 - }, - "minecraft:entity.mooshroom.milk": { - "protocol_id": 736 - }, - "minecraft:entity.mooshroom.shear": { - "protocol_id": 738 - }, - "minecraft:entity.mooshroom.suspicious_milk": { - "protocol_id": 737 - }, - "minecraft:entity.mule.ambient": { - "protocol_id": 769 - }, - "minecraft:entity.mule.angry": { - "protocol_id": 770 - }, - "minecraft:entity.mule.chest": { - "protocol_id": 771 - }, - "minecraft:entity.mule.death": { - "protocol_id": 772 - }, - "minecraft:entity.mule.eat": { - "protocol_id": 773 - }, - "minecraft:entity.mule.hurt": { - "protocol_id": 774 - }, - "minecraft:entity.ocelot.ambient": { - "protocol_id": 906 - }, - "minecraft:entity.ocelot.death": { - "protocol_id": 907 - }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 905 - }, - "minecraft:entity.painting.break": { - "protocol_id": 908 - }, - "minecraft:entity.painting.place": { - "protocol_id": 909 - }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 917 - }, - "minecraft:entity.panda.ambient": { - "protocol_id": 912 - }, - "minecraft:entity.panda.bite": { - "protocol_id": 920 - }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 916 - }, - "minecraft:entity.panda.death": { - "protocol_id": 913 - }, - "minecraft:entity.panda.eat": { - "protocol_id": 914 - }, - "minecraft:entity.panda.hurt": { - "protocol_id": 919 - }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 910 - }, - "minecraft:entity.panda.sneeze": { - "protocol_id": 911 - }, - "minecraft:entity.panda.step": { - "protocol_id": 915 - }, - "minecraft:entity.panda.worried_ambient": { - "protocol_id": 918 - }, - "minecraft:entity.parrot.ambient": { - "protocol_id": 921 - }, - "minecraft:entity.parrot.death": { - "protocol_id": 922 - }, - "minecraft:entity.parrot.eat": { - "protocol_id": 923 - }, - "minecraft:entity.parrot.fly": { - "protocol_id": 924 - }, - "minecraft:entity.parrot.hurt": { - "protocol_id": 925 - }, - "minecraft:entity.parrot.imitate.blaze": { - "protocol_id": 926 - }, - "minecraft:entity.parrot.imitate.creeper": { - "protocol_id": 927 - }, - "minecraft:entity.parrot.imitate.drowned": { - "protocol_id": 928 - }, - "minecraft:entity.parrot.imitate.elder_guardian": { - "protocol_id": 929 - }, - "minecraft:entity.parrot.imitate.ender_dragon": { - "protocol_id": 930 - }, - "minecraft:entity.parrot.imitate.endermite": { - "protocol_id": 931 - }, - "minecraft:entity.parrot.imitate.evoker": { - "protocol_id": 932 - }, - "minecraft:entity.parrot.imitate.ghast": { - "protocol_id": 933 - }, - "minecraft:entity.parrot.imitate.guardian": { - "protocol_id": 934 - }, - "minecraft:entity.parrot.imitate.hoglin": { - "protocol_id": 935 - }, - "minecraft:entity.parrot.imitate.husk": { - "protocol_id": 936 - }, - "minecraft:entity.parrot.imitate.illusioner": { - "protocol_id": 937 - }, - "minecraft:entity.parrot.imitate.magma_cube": { - "protocol_id": 938 - }, - "minecraft:entity.parrot.imitate.phantom": { - "protocol_id": 939 - }, - "minecraft:entity.parrot.imitate.piglin": { - "protocol_id": 940 - }, - "minecraft:entity.parrot.imitate.piglin_brute": { - "protocol_id": 941 - }, - "minecraft:entity.parrot.imitate.pillager": { - "protocol_id": 942 - }, - "minecraft:entity.parrot.imitate.ravager": { - "protocol_id": 943 - }, - "minecraft:entity.parrot.imitate.shulker": { - "protocol_id": 944 - }, - "minecraft:entity.parrot.imitate.silverfish": { - "protocol_id": 945 - }, - "minecraft:entity.parrot.imitate.skeleton": { - "protocol_id": 946 - }, - "minecraft:entity.parrot.imitate.slime": { - "protocol_id": 947 - }, - "minecraft:entity.parrot.imitate.spider": { - "protocol_id": 948 - }, - "minecraft:entity.parrot.imitate.stray": { - "protocol_id": 949 - }, - "minecraft:entity.parrot.imitate.vex": { - "protocol_id": 950 - }, - "minecraft:entity.parrot.imitate.vindicator": { - "protocol_id": 951 - }, - "minecraft:entity.parrot.imitate.warden": { - "protocol_id": 952 - }, - "minecraft:entity.parrot.imitate.witch": { - "protocol_id": 953 - }, - "minecraft:entity.parrot.imitate.wither": { - "protocol_id": 954 - }, - "minecraft:entity.parrot.imitate.wither_skeleton": { - "protocol_id": 955 - }, - "minecraft:entity.parrot.imitate.zoglin": { - "protocol_id": 956 - }, - "minecraft:entity.parrot.imitate.zombie": { - "protocol_id": 957 - }, - "minecraft:entity.parrot.imitate.zombie_villager": { - "protocol_id": 958 - }, - "minecraft:entity.parrot.step": { - "protocol_id": 959 - }, - "minecraft:entity.phantom.ambient": { - "protocol_id": 960 - }, - "minecraft:entity.phantom.bite": { - "protocol_id": 961 - }, - "minecraft:entity.phantom.death": { - "protocol_id": 962 - }, - "minecraft:entity.phantom.flap": { - "protocol_id": 963 - }, - "minecraft:entity.phantom.hurt": { - "protocol_id": 964 - }, - "minecraft:entity.phantom.swoop": { - "protocol_id": 965 - }, - "minecraft:entity.pig.ambient": { - "protocol_id": 966 - }, - "minecraft:entity.pig.death": { - "protocol_id": 967 - }, - "minecraft:entity.pig.hurt": { - "protocol_id": 968 - }, - "minecraft:entity.pig.saddle": { - "protocol_id": 969 - }, - "minecraft:entity.pig.step": { - "protocol_id": 970 - }, - "minecraft:entity.piglin.admiring_item": { - "protocol_id": 971 - }, - "minecraft:entity.piglin.ambient": { - "protocol_id": 972 - }, - "minecraft:entity.piglin.angry": { - "protocol_id": 973 - }, - "minecraft:entity.piglin.celebrate": { - "protocol_id": 974 - }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 980 - }, - "minecraft:entity.piglin.death": { - "protocol_id": 975 - }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 977 - }, - "minecraft:entity.piglin.jealous": { - "protocol_id": 976 - }, - "minecraft:entity.piglin.retreat": { - "protocol_id": 978 - }, - "minecraft:entity.piglin.step": { - "protocol_id": 979 - }, - "minecraft:entity.piglin_brute.ambient": { - "protocol_id": 981 - }, - "minecraft:entity.piglin_brute.angry": { - "protocol_id": 982 - }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 986 - }, - "minecraft:entity.piglin_brute.death": { - "protocol_id": 983 - }, - "minecraft:entity.piglin_brute.hurt": { - "protocol_id": 984 - }, - "minecraft:entity.piglin_brute.step": { - "protocol_id": 985 - }, - "minecraft:entity.pillager.ambient": { - "protocol_id": 987 - }, - "minecraft:entity.pillager.celebrate": { - "protocol_id": 988 - }, - "minecraft:entity.pillager.death": { - "protocol_id": 989 - }, - "minecraft:entity.pillager.hurt": { - "protocol_id": 990 - }, - "minecraft:entity.player.attack.crit": { - "protocol_id": 993 - }, - "minecraft:entity.player.attack.knockback": { - "protocol_id": 994 - }, - "minecraft:entity.player.attack.nodamage": { - "protocol_id": 995 - }, - "minecraft:entity.player.attack.strong": { - "protocol_id": 996 - }, - "minecraft:entity.player.attack.sweep": { - "protocol_id": 997 - }, - "minecraft:entity.player.attack.weak": { - "protocol_id": 998 - }, - "minecraft:entity.player.big_fall": { - "protocol_id": 999 - }, - "minecraft:entity.player.breath": { - "protocol_id": 1000 - }, - "minecraft:entity.player.burp": { - "protocol_id": 1001 - }, - "minecraft:entity.player.death": { - "protocol_id": 1002 - }, - "minecraft:entity.player.hurt": { - "protocol_id": 1003 - }, - "minecraft:entity.player.hurt_drown": { - "protocol_id": 1004 - }, - "minecraft:entity.player.hurt_freeze": { - "protocol_id": 1005 - }, - "minecraft:entity.player.hurt_on_fire": { - "protocol_id": 1006 - }, - "minecraft:entity.player.hurt_sweet_berry_bush": { - "protocol_id": 1007 - }, - "minecraft:entity.player.levelup": { - "protocol_id": 1008 - }, - "minecraft:entity.player.small_fall": { - "protocol_id": 1009 - }, - "minecraft:entity.player.splash": { - "protocol_id": 1010 - }, - "minecraft:entity.player.splash.high_speed": { - "protocol_id": 1011 - }, - "minecraft:entity.player.swim": { - "protocol_id": 1012 - }, - "minecraft:entity.polar_bear.ambient": { - "protocol_id": 1013 - }, - "minecraft:entity.polar_bear.ambient_baby": { - "protocol_id": 1014 - }, - "minecraft:entity.polar_bear.death": { - "protocol_id": 1015 - }, - "minecraft:entity.polar_bear.hurt": { - "protocol_id": 1016 - }, - "minecraft:entity.polar_bear.step": { - "protocol_id": 1017 - }, - "minecraft:entity.polar_bear.warning": { - "protocol_id": 1018 - }, - "minecraft:entity.puffer_fish.ambient": { - "protocol_id": 1032 - }, - "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 1033 - }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 1034 - }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 1035 - }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 1036 - }, - "minecraft:entity.puffer_fish.hurt": { - "protocol_id": 1037 - }, - "minecraft:entity.puffer_fish.sting": { - "protocol_id": 1038 - }, - "minecraft:entity.rabbit.ambient": { - "protocol_id": 1040 - }, - "minecraft:entity.rabbit.attack": { - "protocol_id": 1041 - }, - "minecraft:entity.rabbit.death": { - "protocol_id": 1042 - }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 1043 - }, - "minecraft:entity.rabbit.jump": { - "protocol_id": 1044 - }, - "minecraft:entity.ravager.ambient": { - "protocol_id": 1046 - }, - "minecraft:entity.ravager.attack": { - "protocol_id": 1047 - }, - "minecraft:entity.ravager.celebrate": { - "protocol_id": 1048 - }, - "minecraft:entity.ravager.death": { - "protocol_id": 1049 - }, - "minecraft:entity.ravager.hurt": { - "protocol_id": 1050 - }, - "minecraft:entity.ravager.roar": { - "protocol_id": 1053 - }, - "minecraft:entity.ravager.step": { - "protocol_id": 1051 - }, - "minecraft:entity.ravager.stunned": { - "protocol_id": 1052 - }, - "minecraft:entity.salmon.ambient": { - "protocol_id": 1074 - }, - "minecraft:entity.salmon.death": { - "protocol_id": 1075 - }, - "minecraft:entity.salmon.flop": { - "protocol_id": 1076 - }, - "minecraft:entity.salmon.hurt": { - "protocol_id": 1077 - }, - "minecraft:entity.sheep.ambient": { - "protocol_id": 1119 - }, - "minecraft:entity.sheep.death": { - "protocol_id": 1120 - }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 1121 - }, - "minecraft:entity.sheep.shear": { - "protocol_id": 1122 - }, - "minecraft:entity.sheep.step": { - "protocol_id": 1123 - }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 1132 - }, - "minecraft:entity.shulker.close": { - "protocol_id": 1137 - }, - "minecraft:entity.shulker.death": { - "protocol_id": 1138 - }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 1139 - }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 1140 - }, - "minecraft:entity.shulker.open": { - "protocol_id": 1141 - }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 1142 - }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 1143 - }, - "minecraft:entity.shulker_bullet.hit": { - "protocol_id": 1135 - }, - "minecraft:entity.shulker_bullet.hurt": { - "protocol_id": 1136 - }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 1144 - }, - "minecraft:entity.silverfish.death": { - "protocol_id": 1145 - }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 1146 - }, - "minecraft:entity.silverfish.step": { - "protocol_id": 1147 - }, - "minecraft:entity.skeleton.ambient": { - "protocol_id": 1148 - }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 1149 - }, - "minecraft:entity.skeleton.death": { - "protocol_id": 1150 - }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 1159 - }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 1160 - }, - "minecraft:entity.skeleton.step": { - "protocol_id": 1161 - }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 1151 - }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 1155 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 1152 - }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 1156 - }, - "minecraft:entity.skeleton_horse.hurt": { - "protocol_id": 1153 - }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 1157 - }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 1158 - }, - "minecraft:entity.skeleton_horse.swim": { - "protocol_id": 1154 - }, - "minecraft:entity.slime.attack": { - "protocol_id": 1162 - }, - "minecraft:entity.slime.death": { - "protocol_id": 1163 - }, - "minecraft:entity.slime.death_small": { - "protocol_id": 1204 - }, - "minecraft:entity.slime.hurt": { - "protocol_id": 1164 - }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 1205 - }, - "minecraft:entity.slime.jump": { - "protocol_id": 1165 - }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 1206 - }, - "minecraft:entity.slime.squish": { - "protocol_id": 1166 - }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 1207 - }, - "minecraft:entity.sniffer.death": { - "protocol_id": 1214 - }, - "minecraft:entity.sniffer.digging": { - "protocol_id": 1219 - }, - "minecraft:entity.sniffer.digging_stop": { - "protocol_id": 1220 - }, - "minecraft:entity.sniffer.drop_seed": { - "protocol_id": 1215 - }, - "minecraft:entity.sniffer.eat": { - "protocol_id": 1211 - }, - "minecraft:entity.sniffer.happy": { - "protocol_id": 1221 - }, - "minecraft:entity.sniffer.hurt": { - "protocol_id": 1213 - }, - "minecraft:entity.sniffer.idle": { - "protocol_id": 1212 - }, - "minecraft:entity.sniffer.scenting": { - "protocol_id": 1216 - }, - "minecraft:entity.sniffer.searching": { - "protocol_id": 1218 - }, - "minecraft:entity.sniffer.sniffing": { - "protocol_id": 1217 - }, - "minecraft:entity.sniffer.step": { - "protocol_id": 1210 - }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 1225 - }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 1226 - }, - "minecraft:entity.snow_golem.hurt": { - "protocol_id": 1227 - }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1229 - }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1228 - }, - "minecraft:entity.snowball.throw": { - "protocol_id": 1222 - }, - "minecraft:entity.spider.ambient": { - "protocol_id": 1233 - }, - "minecraft:entity.spider.death": { - "protocol_id": 1234 - }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1235 - }, - "minecraft:entity.spider.step": { - "protocol_id": 1236 - }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1237 - }, - "minecraft:entity.splash_potion.throw": { - "protocol_id": 1238 - }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1241 - }, - "minecraft:entity.squid.death": { - "protocol_id": 1242 - }, - "minecraft:entity.squid.hurt": { - "protocol_id": 1243 - }, - "minecraft:entity.squid.squirt": { - "protocol_id": 1244 - }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1254 - }, - "minecraft:entity.stray.death": { - "protocol_id": 1255 - }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1256 - }, - "minecraft:entity.stray.step": { - "protocol_id": 1257 - }, - "minecraft:entity.strider.ambient": { - "protocol_id": 1195 - }, - "minecraft:entity.strider.death": { - "protocol_id": 1198 - }, - "minecraft:entity.strider.eat": { - "protocol_id": 1202 - }, - "minecraft:entity.strider.happy": { - "protocol_id": 1196 - }, - "minecraft:entity.strider.hurt": { - "protocol_id": 1199 - }, - "minecraft:entity.strider.retreat": { - "protocol_id": 1197 - }, - "minecraft:entity.strider.saddle": { - "protocol_id": 1203 - }, - "minecraft:entity.strider.step": { - "protocol_id": 1200 - }, - "minecraft:entity.strider.step_lava": { - "protocol_id": 1201 - }, - "minecraft:entity.tadpole.death": { - "protocol_id": 1261 - }, - "minecraft:entity.tadpole.flop": { - "protocol_id": 1262 - }, - "minecraft:entity.tadpole.grow_up": { - "protocol_id": 1263 - }, - "minecraft:entity.tadpole.hurt": { - "protocol_id": 1264 - }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1266 - }, - "minecraft:entity.tropical_fish.ambient": { - "protocol_id": 1280 - }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1281 - }, - "minecraft:entity.tropical_fish.flop": { - "protocol_id": 1282 - }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1283 - }, - "minecraft:entity.turtle.ambient_land": { - "protocol_id": 1289 - }, - "minecraft:entity.turtle.death": { - "protocol_id": 1290 - }, - "minecraft:entity.turtle.death_baby": { - "protocol_id": 1291 - }, - "minecraft:entity.turtle.egg_break": { - "protocol_id": 1292 - }, - "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1293 - }, - "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1294 - }, - "minecraft:entity.turtle.hurt": { - "protocol_id": 1295 - }, - "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1296 - }, - "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1297 - }, - "minecraft:entity.turtle.shamble": { - "protocol_id": 1298 - }, - "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1299 - }, - "minecraft:entity.turtle.swim": { - "protocol_id": 1300 - }, - "minecraft:entity.vex.ambient": { - "protocol_id": 1310 - }, - "minecraft:entity.vex.charge": { - "protocol_id": 1311 - }, - "minecraft:entity.vex.death": { - "protocol_id": 1312 - }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1313 - }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1314 - }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1315 - }, - "minecraft:entity.villager.death": { - "protocol_id": 1316 - }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1317 - }, - "minecraft:entity.villager.no": { - "protocol_id": 1318 - }, - "minecraft:entity.villager.trade": { - "protocol_id": 1319 - }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1321 - }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1322 - }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1323 - }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1324 - }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1325 - }, - "minecraft:entity.villager.work_fisherman": { - "protocol_id": 1326 - }, - "minecraft:entity.villager.work_fletcher": { - "protocol_id": 1327 - }, - "minecraft:entity.villager.work_leatherworker": { - "protocol_id": 1328 - }, - "minecraft:entity.villager.work_librarian": { - "protocol_id": 1329 - }, - "minecraft:entity.villager.work_mason": { - "protocol_id": 1330 - }, - "minecraft:entity.villager.work_shepherd": { - "protocol_id": 1331 - }, - "minecraft:entity.villager.work_toolsmith": { - "protocol_id": 1332 - }, - "minecraft:entity.villager.work_weaponsmith": { - "protocol_id": 1333 - }, - "minecraft:entity.villager.yes": { - "protocol_id": 1320 - }, - "minecraft:entity.vindicator.ambient": { - "protocol_id": 1334 - }, - "minecraft:entity.vindicator.celebrate": { - "protocol_id": 1335 - }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1336 - }, - "minecraft:entity.vindicator.hurt": { - "protocol_id": 1337 - }, - "minecraft:entity.wandering_trader.ambient": { - "protocol_id": 1344 - }, - "minecraft:entity.wandering_trader.death": { - "protocol_id": 1345 - }, - "minecraft:entity.wandering_trader.disappeared": { - "protocol_id": 1346 - }, - "minecraft:entity.wandering_trader.drink_milk": { - "protocol_id": 1347 - }, - "minecraft:entity.wandering_trader.drink_potion": { - "protocol_id": 1348 - }, - "minecraft:entity.wandering_trader.hurt": { - "protocol_id": 1349 - }, - "minecraft:entity.wandering_trader.no": { - "protocol_id": 1350 - }, - "minecraft:entity.wandering_trader.reappeared": { - "protocol_id": 1351 - }, - "minecraft:entity.wandering_trader.trade": { - "protocol_id": 1352 - }, - "minecraft:entity.wandering_trader.yes": { - "protocol_id": 1353 - }, - "minecraft:entity.warden.agitated": { - "protocol_id": 1354 - }, - "minecraft:entity.warden.ambient": { - "protocol_id": 1355 - }, - "minecraft:entity.warden.angry": { - "protocol_id": 1356 - }, - "minecraft:entity.warden.attack_impact": { - "protocol_id": 1357 - }, - "minecraft:entity.warden.death": { - "protocol_id": 1358 - }, - "minecraft:entity.warden.dig": { - "protocol_id": 1359 - }, - "minecraft:entity.warden.emerge": { - "protocol_id": 1360 - }, - "minecraft:entity.warden.heartbeat": { - "protocol_id": 1361 - }, - "minecraft:entity.warden.hurt": { - "protocol_id": 1362 - }, - "minecraft:entity.warden.listening": { - "protocol_id": 1363 - }, - "minecraft:entity.warden.listening_angry": { - "protocol_id": 1364 - }, - "minecraft:entity.warden.nearby_close": { - "protocol_id": 1365 - }, - "minecraft:entity.warden.nearby_closer": { - "protocol_id": 1366 - }, - "minecraft:entity.warden.nearby_closest": { - "protocol_id": 1367 - }, - "minecraft:entity.warden.roar": { - "protocol_id": 1368 - }, - "minecraft:entity.warden.sniff": { - "protocol_id": 1369 - }, - "minecraft:entity.warden.sonic_boom": { - "protocol_id": 1370 - }, - "minecraft:entity.warden.sonic_charge": { - "protocol_id": 1371 - }, - "minecraft:entity.warden.step": { - "protocol_id": 1372 - }, - "minecraft:entity.warden.tendril_clicks": { - "protocol_id": 1373 - }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1382 - }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1383 - }, - "minecraft:entity.witch.death": { - "protocol_id": 1384 - }, - "minecraft:entity.witch.drink": { - "protocol_id": 1385 - }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1386 - }, - "minecraft:entity.witch.throw": { - "protocol_id": 1387 - }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1388 - }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1389 - }, - "minecraft:entity.wither.death": { - "protocol_id": 1390 - }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1391 - }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1392 - }, - "minecraft:entity.wither.spawn": { - "protocol_id": 1397 - }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1393 - }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1394 - }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1395 - }, - "minecraft:entity.wither_skeleton.step": { - "protocol_id": 1396 - }, - "minecraft:entity.wolf.ambient": { - "protocol_id": 1398 - }, - "minecraft:entity.wolf.death": { - "protocol_id": 1399 - }, - "minecraft:entity.wolf.growl": { - "protocol_id": 1400 - }, - "minecraft:entity.wolf.howl": { - "protocol_id": 1401 - }, - "minecraft:entity.wolf.hurt": { - "protocol_id": 1402 - }, - "minecraft:entity.wolf.pant": { - "protocol_id": 1403 - }, - "minecraft:entity.wolf.shake": { - "protocol_id": 1404 - }, - "minecraft:entity.wolf.step": { - "protocol_id": 1405 - }, - "minecraft:entity.wolf.whine": { - "protocol_id": 1406 - }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1425 - }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1426 - }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1427 - }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1428 - }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1429 - }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1430 - }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1431 - }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1433 - }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1432 - }, - "minecraft:entity.zombie.break_wooden_door": { - "protocol_id": 1434 - }, - "minecraft:entity.zombie.converted_to_drowned": { - "protocol_id": 1435 - }, - "minecraft:entity.zombie.death": { - "protocol_id": 1436 - }, - "minecraft:entity.zombie.destroy_egg": { - "protocol_id": 1437 - }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1441 - }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1442 - }, - "minecraft:entity.zombie.step": { - "protocol_id": 1447 - }, - "minecraft:entity.zombie_horse.ambient": { - "protocol_id": 1438 - }, - "minecraft:entity.zombie_horse.death": { - "protocol_id": 1439 - }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1440 - }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1448 - }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1449 - }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1450 - }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1451 - }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1452 - }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1453 - }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1443 - }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1444 - }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1445 - }, - "minecraft:entity.zombified_piglin.hurt": { - "protocol_id": 1446 - }, - "minecraft:event.raid.horn": { - "protocol_id": 1045 - }, - "minecraft:intentionally_empty": { - "protocol_id": 837 - }, - "minecraft:item.armor.equip_chain": { - "protocol_id": 53 - }, - "minecraft:item.armor.equip_diamond": { - "protocol_id": 54 - }, - "minecraft:item.armor.equip_elytra": { - "protocol_id": 55 - }, - "minecraft:item.armor.equip_generic": { - "protocol_id": 56 - }, - "minecraft:item.armor.equip_gold": { - "protocol_id": 57 - }, - "minecraft:item.armor.equip_iron": { - "protocol_id": 58 - }, - "minecraft:item.armor.equip_leather": { - "protocol_id": 59 - }, - "minecraft:item.armor.equip_netherite": { - "protocol_id": 60 - }, - "minecraft:item.armor.equip_turtle": { - "protocol_id": 61 - }, - "minecraft:item.axe.scrape": { - "protocol_id": 70 - }, - "minecraft:item.axe.strip": { + "minecraft:entity.arrow.shoot": { "protocol_id": 69 }, - "minecraft:item.axe.wax_off": { - "protocol_id": 71 + "minecraft:entity.axolotl.attack": { + "protocol_id": 73 }, - "minecraft:item.bone_meal.use": { - "protocol_id": 158 + "minecraft:entity.axolotl.death": { + "protocol_id": 74 }, - "minecraft:item.book.page_turn": { - "protocol_id": 159 + "minecraft:entity.axolotl.hurt": { + "protocol_id": 75 }, - "minecraft:item.book.put": { - "protocol_id": 160 + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 76 }, - "minecraft:item.bottle.empty": { - "protocol_id": 162 + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 77 }, - "minecraft:item.bottle.fill": { - "protocol_id": 163 + "minecraft:entity.axolotl.splash": { + "protocol_id": 78 }, - "minecraft:item.bottle.fill_dragonbreath": { - "protocol_id": 164 + "minecraft:entity.axolotl.swim": { + "protocol_id": 79 }, - "minecraft:item.brush.brush_sand_completed": { - "protocol_id": 167 + "minecraft:entity.bat.ambient": { + "protocol_id": 120 }, - "minecraft:item.brush.brushing": { - "protocol_id": 166 + "minecraft:entity.bat.death": { + "protocol_id": 121 }, - "minecraft:item.bucket.empty": { - "protocol_id": 173 + "minecraft:entity.bat.hurt": { + "protocol_id": 122 }, - "minecraft:item.bucket.empty_axolotl": { - "protocol_id": 174 + "minecraft:entity.bat.loop": { + "protocol_id": 123 }, - "minecraft:item.bucket.empty_fish": { - "protocol_id": 175 + "minecraft:entity.bat.takeoff": { + "protocol_id": 124 }, - "minecraft:item.bucket.empty_lava": { - "protocol_id": 176 + "minecraft:entity.bee.death": { + "protocol_id": 129 }, - "minecraft:item.bucket.empty_powder_snow": { - "protocol_id": 177 + "minecraft:entity.bee.hurt": { + "protocol_id": 130 }, - "minecraft:item.bucket.empty_tadpole": { - "protocol_id": 178 + "minecraft:entity.bee.loop": { + "protocol_id": 132 }, - "minecraft:item.bucket.fill": { - "protocol_id": 179 + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 131 }, - "minecraft:item.bucket.fill_axolotl": { - "protocol_id": 180 + "minecraft:entity.bee.pollinate": { + "protocol_id": 134 }, - "minecraft:item.bucket.fill_fish": { - "protocol_id": 181 + "minecraft:entity.bee.sting": { + "protocol_id": 133 }, - "minecraft:item.bucket.fill_lava": { - "protocol_id": 182 + "minecraft:entity.blaze.ambient": { + "protocol_id": 147 }, - "minecraft:item.bucket.fill_powder_snow": { - "protocol_id": 183 + "minecraft:entity.blaze.burn": { + "protocol_id": 148 }, - "minecraft:item.bucket.fill_tadpole": { - "protocol_id": 184 + "minecraft:entity.blaze.death": { + "protocol_id": 149 }, - "minecraft:item.bundle.drop_contents": { - "protocol_id": 185 + "minecraft:entity.blaze.hurt": { + "protocol_id": 150 }, - "minecraft:item.bundle.insert": { - "protocol_id": 186 + "minecraft:entity.blaze.shoot": { + "protocol_id": 151 }, - "minecraft:item.bundle.remove_one": { - "protocol_id": 187 + "minecraft:entity.boat.paddle_land": { + "protocol_id": 152 }, - "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 282 + "minecraft:entity.boat.paddle_water": { + "protocol_id": 153 }, - "minecraft:item.crop.plant": { + "minecraft:entity.camel.ambient": { + "protocol_id": 198 + }, + "minecraft:entity.camel.dash": { + "protocol_id": 199 + }, + "minecraft:entity.camel.dash_ready": { + "protocol_id": 200 + }, + "minecraft:entity.camel.death": { + "protocol_id": 201 + }, + "minecraft:entity.camel.eat": { + "protocol_id": 202 + }, + "minecraft:entity.camel.hurt": { + "protocol_id": 203 + }, + "minecraft:entity.camel.saddle": { + "protocol_id": 204 + }, + "minecraft:entity.camel.sit": { + "protocol_id": 205 + }, + "minecraft:entity.camel.stand": { + "protocol_id": 206 + }, + "minecraft:entity.camel.step": { + "protocol_id": 207 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 208 + }, + "minecraft:entity.cat.ambient": { + "protocol_id": 217 + }, + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 222 + }, + "minecraft:entity.cat.death": { + "protocol_id": 219 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 220 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 221 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 223 + }, + "minecraft:entity.cat.purr": { + "protocol_id": 224 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 225 + }, + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 218 + }, + "minecraft:entity.chicken.ambient": { + "protocol_id": 270 + }, + "minecraft:entity.chicken.death": { + "protocol_id": 271 + }, + "minecraft:entity.chicken.egg": { + "protocol_id": 272 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 273 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 274 + }, + "minecraft:entity.cod.ambient": { + "protocol_id": 287 + }, + "minecraft:entity.cod.death": { + "protocol_id": 288 + }, + "minecraft:entity.cod.flop": { + "protocol_id": 289 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 290 + }, + "minecraft:entity.cow.ambient": { + "protocol_id": 311 + }, + "minecraft:entity.cow.death": { + "protocol_id": 312 + }, + "minecraft:entity.cow.hurt": { + "protocol_id": 313 + }, + "minecraft:entity.cow.milk": { + "protocol_id": 314 + }, + "minecraft:entity.cow.step": { + "protocol_id": 315 + }, + "minecraft:entity.creeper.death": { "protocol_id": 316 }, - "minecraft:item.crossbow.hit": { + "minecraft:entity.creeper.hurt": { "protocol_id": 317 }, - "minecraft:item.crossbow.loading_end": { + "minecraft:entity.creeper.primed": { "protocol_id": 318 }, - "minecraft:item.crossbow.loading_middle": { - "protocol_id": 319 + "minecraft:entity.dolphin.ambient": { + "protocol_id": 353 }, - "minecraft:item.crossbow.loading_start": { - "protocol_id": 320 + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 354 }, - "minecraft:item.crossbow.quick_charge_1": { - "protocol_id": 321 + "minecraft:entity.dolphin.attack": { + "protocol_id": 355 }, - "minecraft:item.crossbow.quick_charge_2": { - "protocol_id": 322 + "minecraft:entity.dolphin.death": { + "protocol_id": 356 }, - "minecraft:item.crossbow.quick_charge_3": { - "protocol_id": 323 + "minecraft:entity.dolphin.eat": { + "protocol_id": 357 }, - "minecraft:item.crossbow.shoot": { - "protocol_id": 324 + "minecraft:entity.dolphin.hurt": { + "protocol_id": 358 }, - "minecraft:item.dye.use": { + "minecraft:entity.dolphin.jump": { + "protocol_id": 359 + }, + "minecraft:entity.dolphin.play": { + "protocol_id": 360 + }, + "minecraft:entity.dolphin.splash": { + "protocol_id": 361 + }, + "minecraft:entity.dolphin.swim": { + "protocol_id": 362 + }, + "minecraft:entity.donkey.ambient": { + "protocol_id": 363 + }, + "minecraft:entity.donkey.angry": { + "protocol_id": 364 + }, + "minecraft:entity.donkey.chest": { + "protocol_id": 365 + }, + "minecraft:entity.donkey.death": { + "protocol_id": 366 + }, + "minecraft:entity.donkey.eat": { + "protocol_id": 367 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 368 + }, + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 411 + }, + "minecraft:entity.drowned.ambient": { + "protocol_id": 386 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 387 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 388 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 389 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 390 + }, + "minecraft:entity.drowned.hurt_water": { "protocol_id": 391 }, - "minecraft:item.elytra.flying": { + "minecraft:entity.drowned.shoot": { + "protocol_id": 392 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 393 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 394 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 396 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 397 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 398 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 399 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 400 + }, + "minecraft:entity.elder_guardian.death_land": { "protocol_id": 401 }, - "minecraft:item.firecharge.use": { + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 402 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 403 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 404 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 409 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 410 + }, + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 412 + }, + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 413 + }, + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 414 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 415 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 416 + }, + "minecraft:entity.ender_eye.launch": { + "protocol_id": 417 + }, + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 428 + }, + "minecraft:entity.enderman.ambient": { + "protocol_id": 418 + }, + "minecraft:entity.enderman.death": { + "protocol_id": 419 + }, + "minecraft:entity.enderman.hurt": { + "protocol_id": 420 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 421 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 422 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 423 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 424 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 425 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 426 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 427 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 432 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 433 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 434 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 435 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 437 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 438 + }, + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 439 + }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 440 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 436 + }, + "minecraft:entity.experience_bottle.throw": { "protocol_id": 441 }, - "minecraft:item.flintandsteel.use": { + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 442 + }, + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 446 + }, + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 447 + }, + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 448 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 449 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 450 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 451 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 452 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 453 + }, + "minecraft:entity.fish.swim": { "protocol_id": 456 }, - "minecraft:item.glow_ink_sac.use": { - "protocol_id": 530 + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 457 }, - "minecraft:item.goat_horn.play": { + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 458 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 459 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 466 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 467 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 468 + }, + "minecraft:entity.fox.death": { + "protocol_id": 469 + }, + "minecraft:entity.fox.eat": { + "protocol_id": 470 + }, + "minecraft:entity.fox.hurt": { + "protocol_id": 471 + }, + "minecraft:entity.fox.screech": { + "protocol_id": 472 + }, + "minecraft:entity.fox.sleep": { + "protocol_id": 473 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 474 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 475 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 476 + }, + "minecraft:entity.frog.ambient": { + "protocol_id": 498 + }, + "minecraft:entity.frog.death": { + "protocol_id": 499 + }, + "minecraft:entity.frog.eat": { + "protocol_id": 500 + }, + "minecraft:entity.frog.hurt": { + "protocol_id": 501 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 502 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 503 + }, + "minecraft:entity.frog.step": { + "protocol_id": 504 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 505 + }, + "minecraft:entity.generic.big_fall": { + "protocol_id": 512 + }, + "minecraft:entity.generic.burn": { + "protocol_id": 513 + }, + "minecraft:entity.generic.death": { + "protocol_id": 514 + }, + "minecraft:entity.generic.drink": { + "protocol_id": 515 + }, + "minecraft:entity.generic.eat": { + "protocol_id": 516 + }, + "minecraft:entity.generic.explode": { + "protocol_id": 517 + }, + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 518 + }, + "minecraft:entity.generic.hurt": { + "protocol_id": 519 + }, + "minecraft:entity.generic.small_fall": { + "protocol_id": 520 + }, + "minecraft:entity.generic.splash": { + "protocol_id": 521 + }, + "minecraft:entity.generic.swim": { + "protocol_id": 522 + }, + "minecraft:entity.ghast.ambient": { + "protocol_id": 523 + }, + "minecraft:entity.ghast.death": { + "protocol_id": 524 + }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 525 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 526 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 527 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 528 + }, + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 540 + }, + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 541 + }, + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 542 + }, + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 543 + }, + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 544 + }, + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 545 + }, + "minecraft:entity.glow_squid.death": { + "protocol_id": 546 + }, + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 547 + }, + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 548 + }, + "minecraft:entity.goat.ambient": { "protocol_id": 549 }, - "minecraft:item.goat_horn.sound.0": { - "protocol_id": 617 + "minecraft:entity.goat.death": { + "protocol_id": 550 }, - "minecraft:item.goat_horn.sound.1": { - "protocol_id": 618 + "minecraft:entity.goat.eat": { + "protocol_id": 551 }, - "minecraft:item.goat_horn.sound.2": { - "protocol_id": 619 + "minecraft:entity.goat.horn_break": { + "protocol_id": 557 }, - "minecraft:item.goat_horn.sound.3": { - "protocol_id": 620 + "minecraft:entity.goat.hurt": { + "protocol_id": 552 }, - "minecraft:item.goat_horn.sound.4": { - "protocol_id": 621 + "minecraft:entity.goat.long_jump": { + "protocol_id": 553 }, - "minecraft:item.goat_horn.sound.5": { - "protocol_id": 622 + "minecraft:entity.goat.milk": { + "protocol_id": 554 }, - "minecraft:item.goat_horn.sound.6": { - "protocol_id": 623 + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 555 }, - "minecraft:item.goat_horn.sound.7": { - "protocol_id": 624 + "minecraft:entity.goat.ram_impact": { + "protocol_id": 556 }, - "minecraft:item.hoe.till": { - "protocol_id": 600 + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 559 }, - "minecraft:item.honey_bottle.drink": { - "protocol_id": 616 + "minecraft:entity.goat.screaming.death": { + "protocol_id": 560 }, - "minecraft:item.honeycomb.wax_on": { + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 561 + }, + "minecraft:entity.goat.screaming.horn_break": { + "protocol_id": 567 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 562 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 563 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 564 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 565 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 566 + }, + "minecraft:entity.goat.step": { + "protocol_id": 568 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 581 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 582 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 583 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 584 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 585 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 586 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 587 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 588 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 610 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 611 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 612 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 613 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 614 + }, + "minecraft:entity.hoglin.hurt": { "protocol_id": 615 }, - "minecraft:item.ink_sac.use": { + "minecraft:entity.hoglin.retreat": { + "protocol_id": 616 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 617 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 634 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 635 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 636 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 637 + }, + "minecraft:entity.horse.death": { + "protocol_id": 638 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 639 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 640 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 641 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 642 + }, + "minecraft:entity.horse.land": { + "protocol_id": 643 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 644 + }, + "minecraft:entity.horse.step": { + "protocol_id": 645 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 646 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 647 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 648 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 649 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 650 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 651 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 652 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 653 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 654 + }, + "minecraft:entity.husk.death": { + "protocol_id": 655 + }, + "minecraft:entity.husk.hurt": { "protocol_id": 656 }, - "minecraft:item.lodestone_compass.lock": { + "minecraft:entity.husk.step": { + "protocol_id": 657 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 658 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 659 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 660 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 661 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 662 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 663 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 664 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 668 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 669 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 670 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 671 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 672 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 673 + }, + "minecraft:entity.item.break": { + "protocol_id": 681 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 682 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 676 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 677 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 678 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 679 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 680 + }, + "minecraft:entity.leash_knot.break": { + "protocol_id": 698 + }, + "minecraft:entity.leash_knot.place": { + "protocol_id": 699 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 701 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 702 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 703 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 704 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 705 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 706 + }, + "minecraft:entity.llama.death": { + "protocol_id": 707 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 708 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 709 + }, + "minecraft:entity.llama.spit": { "protocol_id": 710 }, - "minecraft:item.nether_wart.plant": { - "protocol_id": 821 + "minecraft:entity.llama.step": { + "protocol_id": 711 }, - "minecraft:item.shield.block": { - "protocol_id": 1124 + "minecraft:entity.llama.swag": { + "protocol_id": 712 }, - "minecraft:item.shield.break": { - "protocol_id": 1125 + "minecraft:entity.magma_cube.death": { + "protocol_id": 720 }, - "minecraft:item.shovel.flatten": { - "protocol_id": 1131 + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 713 }, - "minecraft:item.spyglass.stop_using": { - "protocol_id": 1240 + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 721 }, - "minecraft:item.spyglass.use": { - "protocol_id": 1239 + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 722 }, - "minecraft:item.totem.use": { - "protocol_id": 1267 + "minecraft:entity.magma_cube.jump": { + "protocol_id": 723 }, - "minecraft:item.trident.hit": { - "protocol_id": 1268 + "minecraft:entity.magma_cube.squish": { + "protocol_id": 724 }, - "minecraft:item.trident.hit_ground": { - "protocol_id": 1269 + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 725 }, - "minecraft:item.trident.return": { - "protocol_id": 1270 + "minecraft:entity.minecart.inside": { + "protocol_id": 741 }, - "minecraft:item.trident.riptide_1": { - "protocol_id": 1271 + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 740 }, - "minecraft:item.trident.riptide_2": { - "protocol_id": 1272 + "minecraft:entity.minecart.riding": { + "protocol_id": 742 }, - "minecraft:item.trident.riptide_3": { - "protocol_id": 1273 + "minecraft:entity.mooshroom.convert": { + "protocol_id": 743 }, - "minecraft:item.trident.throw": { - "protocol_id": 1274 + "minecraft:entity.mooshroom.eat": { + "protocol_id": 744 }, - "minecraft:item.trident.thunder": { - "protocol_id": 1275 + "minecraft:entity.mooshroom.milk": { + "protocol_id": 745 }, - "minecraft:music.creative": { - "protocol_id": 775 + "minecraft:entity.mooshroom.shear": { + "protocol_id": 747 }, - "minecraft:music.credits": { - "protocol_id": 776 + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 746 }, - "minecraft:music.dragon": { - "protocol_id": 792 - }, - "minecraft:music.end": { - "protocol_id": 793 - }, - "minecraft:music.game": { - "protocol_id": 794 - }, - "minecraft:music.menu": { - "protocol_id": 795 - }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 796 - }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 797 - }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 808 - }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 811 - }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 813 - }, - "minecraft:music.overworld.cherry_grove": { - "protocol_id": 807 - }, - "minecraft:music.overworld.deep_dark": { - "protocol_id": 798 - }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 799 - }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 809 - }, - "minecraft:music.overworld.grove": { - "protocol_id": 800 - }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 801 - }, - "minecraft:music.overworld.jungle_and_forest": { - "protocol_id": 804 - }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 802 - }, - "minecraft:music.overworld.meadow": { - "protocol_id": 806 - }, - "minecraft:music.overworld.old_growth_taiga": { - "protocol_id": 805 - }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 810 - }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 812 - }, - "minecraft:music.overworld.swamp": { - "protocol_id": 803 - }, - "minecraft:music.under_water": { - "protocol_id": 814 - }, - "minecraft:music_disc.11": { + "minecraft:entity.mule.ambient": { "protocol_id": 778 }, - "minecraft:music_disc.13": { + "minecraft:entity.mule.angry": { "protocol_id": 779 }, - "minecraft:music_disc.5": { - "protocol_id": 777 - }, - "minecraft:music_disc.blocks": { + "minecraft:entity.mule.chest": { "protocol_id": 780 }, - "minecraft:music_disc.cat": { + "minecraft:entity.mule.death": { "protocol_id": 781 }, - "minecraft:music_disc.chirp": { + "minecraft:entity.mule.eat": { "protocol_id": 782 }, - "minecraft:music_disc.far": { + "minecraft:entity.mule.hurt": { "protocol_id": 783 }, - "minecraft:music_disc.mall": { - "protocol_id": 784 + "minecraft:entity.ocelot.ambient": { + "protocol_id": 922 }, - "minecraft:music_disc.mellohi": { - "protocol_id": 785 + "minecraft:entity.ocelot.death": { + "protocol_id": 923 }, - "minecraft:music_disc.otherside": { - "protocol_id": 791 + "minecraft:entity.ocelot.hurt": { + "protocol_id": 921 }, - "minecraft:music_disc.pigstep": { - "protocol_id": 786 + "minecraft:entity.painting.break": { + "protocol_id": 924 }, - "minecraft:music_disc.stal": { - "protocol_id": 787 + "minecraft:entity.painting.place": { + "protocol_id": 925 }, - "minecraft:music_disc.strad": { - "protocol_id": 788 + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 933 }, - "minecraft:music_disc.wait": { - "protocol_id": 789 + "minecraft:entity.panda.ambient": { + "protocol_id": 928 }, - "minecraft:music_disc.ward": { - "protocol_id": 790 + "minecraft:entity.panda.bite": { + "protocol_id": 936 }, - "minecraft:particle.soul_escape": { - "protocol_id": 1189 + "minecraft:entity.panda.cant_breed": { + "protocol_id": 932 }, - "minecraft:ui.button.click": { + "minecraft:entity.panda.death": { + "protocol_id": 929 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 930 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 935 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 926 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 927 + }, + "minecraft:entity.panda.step": { + "protocol_id": 931 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 934 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 937 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 938 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 939 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 940 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 941 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 942 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 943 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 944 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 945 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 946 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 947 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 948 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 949 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 950 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 951 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 952 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 953 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 954 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 955 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 956 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 957 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 958 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 959 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 960 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 961 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 962 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 963 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 964 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 965 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 966 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 967 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 968 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 969 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 970 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 971 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 972 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 973 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 974 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 975 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 976 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 977 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 978 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 979 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 980 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 981 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 982 + }, + "minecraft:entity.pig.death": { + "protocol_id": 983 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 984 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 985 + }, + "minecraft:entity.pig.step": { + "protocol_id": 986 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 987 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 988 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 989 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 990 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 996 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 991 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 993 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 992 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 994 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 995 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 997 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 998 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 1002 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 999 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1000 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1001 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1003 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1004 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 1005 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 1006 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 1009 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 1010 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 1011 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 1012 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 1013 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 1014 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 1015 + }, + "minecraft:entity.player.breath": { + "protocol_id": 1016 + }, + "minecraft:entity.player.burp": { + "protocol_id": 1017 + }, + "minecraft:entity.player.death": { + "protocol_id": 1018 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 1019 + }, + "minecraft:entity.player.hurt_drown": { + "protocol_id": 1020 + }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 1021 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1022 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1023 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1024 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1025 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1026 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1027 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1028 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1029 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1030 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1031 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1032 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1033 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1034 + }, + "minecraft:entity.puffer_fish.ambient": { + "protocol_id": 1048 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 1049 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 1050 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1051 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 1052 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 1053 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 1054 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1056 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1057 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1058 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1059 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1060 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1062 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1063 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1064 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1065 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1066 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1069 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1067 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1068 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1090 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1091 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1092 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1093 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1135 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1136 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1137 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1138 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1139 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1148 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1153 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1154 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1155 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1156 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1157 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1158 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1159 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1151 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1152 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1160 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1161 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1162 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1163 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1164 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1165 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1166 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1175 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1176 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1177 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1167 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1171 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1168 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1172 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1169 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1173 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1174 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1170 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1178 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1179 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1220 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1180 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1221 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1181 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1222 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1182 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1223 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1230 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1235 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1236 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1231 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1227 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1237 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1229 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1228 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1232 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1234 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1233 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1226 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1244 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1245 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1246 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1248 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1247 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1241 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1252 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1253 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1254 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1255 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1256 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1257 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1260 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1261 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1262 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1263 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1273 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1274 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1275 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1276 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1211 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1214 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1218 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1212 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1215 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1213 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1219 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1216 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1217 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1280 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1281 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1282 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1283 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1285 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1299 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1300 + }, + "minecraft:entity.tropical_fish.flop": { "protocol_id": 1301 }, - "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1304 - }, - "minecraft:ui.loom.select_pattern": { + "minecraft:entity.tropical_fish.hurt": { "protocol_id": 1302 }, - "minecraft:ui.loom.take_result": { - "protocol_id": 1303 - }, - "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1306 - }, - "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1305 - }, - "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1307 - }, - "minecraft:ui.toast.in": { + "minecraft:entity.turtle.ambient_land": { "protocol_id": 1308 }, - "minecraft:ui.toast.out": { + "minecraft:entity.turtle.death": { "protocol_id": 1309 }, - "minecraft:weather.rain": { + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1310 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1311 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1312 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1313 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1314 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1315 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1316 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1317 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1318 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1319 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1329 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1330 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1331 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1332 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1333 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1334 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1335 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1336 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1337 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1338 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1340 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1341 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1342 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1343 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1344 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1345 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1346 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1347 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1348 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1349 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1350 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1351 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1352 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1339 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1353 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1354 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1355 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1356 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1363 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1364 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1365 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1366 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1367 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1368 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1369 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1370 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1371 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1372 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1373 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1374 + }, + "minecraft:entity.warden.angry": { "protocol_id": 1375 }, - "minecraft:weather.rain.above": { + "minecraft:entity.warden.attack_impact": { "protocol_id": 1376 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1377 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1378 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1379 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1380 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1381 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1382 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1383 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1384 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1385 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1386 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1387 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1388 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1389 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1390 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1391 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1392 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1402 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1403 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1404 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1405 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1406 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1407 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1408 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1409 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1410 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1411 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1412 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1417 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1413 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1414 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1415 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1416 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1418 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1419 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1420 + }, + "minecraft:entity.wolf.howl": { + "protocol_id": 1421 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1422 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1423 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1424 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1425 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1426 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1445 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1446 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1447 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1448 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1449 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1450 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1451 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1453 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1452 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1454 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1455 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1456 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1457 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1461 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1462 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1467 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1458 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1459 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1460 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1468 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1469 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1470 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1471 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1472 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1473 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1463 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1464 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1465 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1466 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1061 + }, + "minecraft:intentionally_empty": { + "protocol_id": 853 + }, + "minecraft:item.armor.equip_chain": { + "protocol_id": 54 + }, + "minecraft:item.armor.equip_diamond": { + "protocol_id": 55 + }, + "minecraft:item.armor.equip_elytra": { + "protocol_id": 56 + }, + "minecraft:item.armor.equip_generic": { + "protocol_id": 57 + }, + "minecraft:item.armor.equip_gold": { + "protocol_id": 58 + }, + "minecraft:item.armor.equip_iron": { + "protocol_id": 59 + }, + "minecraft:item.armor.equip_leather": { + "protocol_id": 60 + }, + "minecraft:item.armor.equip_netherite": { + "protocol_id": 61 + }, + "minecraft:item.armor.equip_turtle": { + "protocol_id": 62 + }, + "minecraft:item.axe.scrape": { + "protocol_id": 71 + }, + "minecraft:item.axe.strip": { + "protocol_id": 70 + }, + "minecraft:item.axe.wax_off": { + "protocol_id": 72 + }, + "minecraft:item.bone_meal.use": { + "protocol_id": 159 + }, + "minecraft:item.book.page_turn": { + "protocol_id": 160 + }, + "minecraft:item.book.put": { + "protocol_id": 161 + }, + "minecraft:item.bottle.empty": { + "protocol_id": 163 + }, + "minecraft:item.bottle.fill": { + "protocol_id": 164 + }, + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 165 + }, + "minecraft:item.brush.brushing.generic": { + "protocol_id": 167 + }, + "minecraft:item.brush.brushing.gravel": { + "protocol_id": 169 + }, + "minecraft:item.brush.brushing.gravel.complete": { + "protocol_id": 171 + }, + "minecraft:item.brush.brushing.sand": { + "protocol_id": 168 + }, + "minecraft:item.brush.brushing.sand.complete": { + "protocol_id": 170 + }, + "minecraft:item.bucket.empty": { + "protocol_id": 177 + }, + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 178 + }, + "minecraft:item.bucket.empty_fish": { + "protocol_id": 179 + }, + "minecraft:item.bucket.empty_lava": { + "protocol_id": 180 + }, + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 181 + }, + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 182 + }, + "minecraft:item.bucket.fill": { + "protocol_id": 183 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 184 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 185 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 186 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 187 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 188 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 189 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 190 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 191 + }, + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 286 + }, + "minecraft:item.crop.plant": { + "protocol_id": 320 + }, + "minecraft:item.crossbow.hit": { + "protocol_id": 321 + }, + "minecraft:item.crossbow.loading_end": { + "protocol_id": 322 + }, + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 323 + }, + "minecraft:item.crossbow.loading_start": { + "protocol_id": 324 + }, + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 325 + }, + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 326 + }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 327 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 328 + }, + "minecraft:item.dye.use": { + "protocol_id": 395 + }, + "minecraft:item.elytra.flying": { + "protocol_id": 405 + }, + "minecraft:item.firecharge.use": { + "protocol_id": 445 + }, + "minecraft:item.flintandsteel.use": { + "protocol_id": 460 + }, + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 539 + }, + "minecraft:item.goat_horn.play": { + "protocol_id": 558 + }, + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 626 + }, + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 627 + }, + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 628 + }, + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 629 + }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 630 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 631 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 632 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 633 + }, + "minecraft:item.hoe.till": { + "protocol_id": 609 + }, + "minecraft:item.honey_bottle.drink": { + "protocol_id": 625 + }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 624 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 665 + }, + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 719 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 837 + }, + "minecraft:item.shield.block": { + "protocol_id": 1140 + }, + "minecraft:item.shield.break": { + "protocol_id": 1141 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1147 + }, + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1259 + }, + "minecraft:item.spyglass.use": { + "protocol_id": 1258 + }, + "minecraft:item.totem.use": { + "protocol_id": 1286 + }, + "minecraft:item.trident.hit": { + "protocol_id": 1287 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1288 + }, + "minecraft:item.trident.return": { + "protocol_id": 1289 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1290 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1291 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1292 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1293 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1294 + }, + "minecraft:music.creative": { + "protocol_id": 784 + }, + "minecraft:music.credits": { + "protocol_id": 785 + }, + "minecraft:music.dragon": { + "protocol_id": 802 + }, + "minecraft:music.end": { + "protocol_id": 803 + }, + "minecraft:music.game": { + "protocol_id": 804 + }, + "minecraft:music.menu": { + "protocol_id": 805 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 806 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 807 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 818 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 821 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 823 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 826 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 829 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 817 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 808 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 825 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 809 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 824 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 814 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 819 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 810 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 811 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 827 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 812 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 816 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 815 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 820 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 828 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 822 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 813 + }, + "minecraft:music.under_water": { + "protocol_id": 830 + }, + "minecraft:music_disc.11": { + "protocol_id": 787 + }, + "minecraft:music_disc.13": { + "protocol_id": 788 + }, + "minecraft:music_disc.5": { + "protocol_id": 786 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 789 + }, + "minecraft:music_disc.cat": { + "protocol_id": 790 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 791 + }, + "minecraft:music_disc.far": { + "protocol_id": 792 + }, + "minecraft:music_disc.mall": { + "protocol_id": 793 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 794 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 800 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 795 + }, + "minecraft:music_disc.relic": { + "protocol_id": 801 + }, + "minecraft:music_disc.stal": { + "protocol_id": 796 + }, + "minecraft:music_disc.strad": { + "protocol_id": 797 + }, + "minecraft:music_disc.wait": { + "protocol_id": 798 + }, + "minecraft:music_disc.ward": { + "protocol_id": 799 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1205 + }, + "minecraft:ui.button.click": { + "protocol_id": 1320 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1323 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1321 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1322 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1325 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1324 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1326 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1327 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1328 + }, + "minecraft:weather.rain": { + "protocol_id": 1395 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1396 } }, "protocol_id": 1 @@ -14286,7 +14590,7 @@ "protocol_id": 2 } }, - "protocol_id": 22 + "protocol_id": 23 }, "minecraft:villager_profession": { "default": "minecraft:none", @@ -14337,7 +14641,7 @@ "protocol_id": 14 } }, - "protocol_id": 24 + "protocol_id": 25 }, "minecraft:villager_type": { "default": "minecraft:plains", @@ -14364,7 +14668,7 @@ "protocol_id": 6 } }, - "protocol_id": 23 + "protocol_id": 24 }, "minecraft:worldgen/biome_source": { "entries": { @@ -14381,7 +14685,7 @@ "protocol_id": 3 } }, - "protocol_id": 52 + "protocol_id": 53 }, "minecraft:worldgen/block_state_provider_type": { "entries": { @@ -14407,7 +14711,7 @@ "protocol_id": 1 } }, - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:worldgen/carver": { "entries": { @@ -14421,7 +14725,7 @@ "protocol_id": 1 } }, - "protocol_id": 40 + "protocol_id": 41 }, "minecraft:worldgen/chunk_generator": { "entries": { @@ -14435,7 +14739,7 @@ "protocol_id": 0 } }, - "protocol_id": 53 + "protocol_id": 54 }, "minecraft:worldgen/density_function_type": { "entries": { @@ -14536,7 +14840,7 @@ "protocol_id": 31 } }, - "protocol_id": 56 + "protocol_id": 57 }, "minecraft:worldgen/feature": { "entries": { @@ -14724,7 +15028,7 @@ "protocol_id": 44 } }, - "protocol_id": 41 + "protocol_id": 42 }, "minecraft:worldgen/feature_size_type": { "entries": { @@ -14735,7 +15039,7 @@ "protocol_id": 0 } }, - "protocol_id": 51 + "protocol_id": 52 }, "minecraft:worldgen/foliage_placer_type": { "entries": { @@ -14773,7 +15077,7 @@ "protocol_id": 1 } }, - "protocol_id": 47 + "protocol_id": 48 }, "minecraft:worldgen/material_condition": { "entries": { @@ -14811,7 +15115,7 @@ "protocol_id": 3 } }, - "protocol_id": 54 + "protocol_id": 55 }, "minecraft:worldgen/material_rule": { "entries": { @@ -14828,7 +15132,7 @@ "protocol_id": 2 } }, - "protocol_id": 55 + "protocol_id": 56 }, "minecraft:worldgen/placement_modifier_type": { "entries": { @@ -14878,7 +15182,7 @@ "protocol_id": 3 } }, - "protocol_id": 45 + "protocol_id": 46 }, "minecraft:worldgen/root_placer_type": { "entries": { @@ -14886,7 +15190,7 @@ "protocol_id": 0 } }, - "protocol_id": 49 + "protocol_id": 50 }, "minecraft:worldgen/structure_piece": { "entries": { @@ -15059,7 +15363,7 @@ "protocol_id": 51 } }, - "protocol_id": 43 + "protocol_id": 44 }, "minecraft:worldgen/structure_placement": { "entries": { @@ -15070,7 +15374,7 @@ "protocol_id": 0 } }, - "protocol_id": 42 + "protocol_id": 43 }, "minecraft:worldgen/structure_pool_element": { "entries": { @@ -15090,7 +15394,7 @@ "protocol_id": 0 } }, - "protocol_id": 58 + "protocol_id": 59 }, "minecraft:worldgen/structure_processor": { "entries": { @@ -15106,6 +15410,9 @@ "minecraft:block_rot": { "protocol_id": 1 }, + "minecraft:capped": { + "protocol_id": 10 + }, "minecraft:gravity": { "protocol_id": 2 }, @@ -15125,7 +15432,7 @@ "protocol_id": 4 } }, - "protocol_id": 57 + "protocol_id": 58 }, "minecraft:worldgen/structure_type": { "entries": { @@ -15178,7 +15485,7 @@ "protocol_id": 15 } }, - "protocol_id": 44 + "protocol_id": 45 }, "minecraft:worldgen/tree_decorator_type": { "entries": { @@ -15201,7 +15508,7 @@ "protocol_id": 0 } }, - "protocol_id": 50 + "protocol_id": 51 }, "minecraft:worldgen/trunk_placer_type": { "entries": { @@ -15233,6 +15540,6 @@ "protocol_id": 7 } }, - "protocol_id": 48 + "protocol_id": 49 } } \ No newline at end of file